@charset "UTF-8";
html {
  font-size: 3.7209302326vw;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.4035087719vw;
  }
}
@media (min-width: 1140px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 500;
  color: #000000;
  line-height: 1;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.6;
}

/* PC版Chromeで拡縮画像ぼやけ対策 */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (-webkit-min-device-pixel-ratio: 0), screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}
/* iPhoneSafariで画像ジャギ対策 */
img {
  image-rendering: auto;
}

/* コンテンツ量が少なく短いページでもフッターを最下部に表示する ---- */
.content-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/* コンテンツ量が少なく短いページでもフッターを最下部に表示する ここまで ---- */
/* FOUT対策 ----------------- */
html {
  visibility: hidden;
}

html.wf-active,
html.loading-delay {
  visibility: visible;
}

/* FOUT対策 ここまで ----------------- */
/* iOSの100vhでアドレスバーがあっても高さいっぱいに表示する */
.element-100vh {
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
}

/* iOSの100vhでアドレスバーがあっても高さいっぱいに表示する ここまで ----------------- */
/* YouTubeのframeborder属性の変わり(HTML5の標準仕様で廃止されているため) */
iframe {
  border: none;
}

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

ul,
ol {
  padding: 0;
}

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

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

input,
button,
select,
textarea {
  font: inherit;
  border: none;
  border-radius: 0;
  outline: none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  resize: none;
}

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

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

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

/* MVフェードインアニメーション -------------------------- */
.js-chara-fadeIn {
  opacity: 0;
}

/* MVフェードインアニメーション ここまで ----------------- */
.article {
  padding-bottom: 4.375rem;
}
@media screen and (min-width: 768px) {
  .article {
    padding-bottom: 8.75rem;
  }
}

.article__title-wrapper {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #eaedf0;
}
@media screen and (min-width: 768px) {
  .article__title-wrapper {
    padding-bottom: 1.875rem;
  }
}

.article__title-text {
  font-size: 1.5rem;
  letter-spacing: 0.052em;
  font-weight: bold;
  line-height: 1.4166666667;
}
@media screen and (min-width: 768px) {
  .article__title-text {
    font-size: 2rem;
    line-height: 1.5625;
  }
}

.article__date-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .article__date-wrapper {
    margin-top: 1.375rem;
  }
}

.article__date {
  font-size: 0.8125rem;
  font-weight: 900;
  font-family: "Nunito", sans-serif;
  color: #ef57dd;
  letter-spacing: 0.045em;
}
@media screen and (min-width: 768px) {
  .article__date {
    font-size: 1.125rem;
  }
}

.article__date-small {
  font-size: 0.5rem;
  font-weight: 900;
  font-family: "Nunito", sans-serif;
  color: #ef57dd;
  letter-spacing: 0.045em;
  margin-left: 0.5rem;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .article__date-small {
    font-size: 0.5rem;
    margin-left: 0.5rem;
  }
}

.article__wrapper {
  padding: 1.875rem 0 0 0;
}
@media screen and (min-width: 768px) {
  .article__wrapper {
    padding: 3.125rem 6.25rem 0 6.25rem;
  }
}

.article__text,
.article__list-item {
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .article__text,
  .article__list-item {
    font-size: 1rem;
  }
}

.article__heading2 {
  font-size: 1.375rem;
  font-weight: 700;
  font-family: "Noto Sans Japanese", sans-serif;
  color: #575def;
  line-height: 1.5;
  letter-spacing: 0.026em;
  margin-top: 2.1875rem;
  border-bottom: 2px solid #575def;
}
@media screen and (min-width: 768px) {
  .article__heading2 {
    font-size: 1.625rem;
    margin-top: 2.5rem;
  }
}

.article__heading3 {
  font-size: 1.125rem;
  font-weight: 700;
  font-family: "Noto Sans Japanese", sans-serif;
  color: #ef57dd;
  line-height: 1.4444444444;
  letter-spacing: 0.026em;
  margin-top: 1.5625rem;
  border-bottom: 1px solid #ef57dd;
}
@media screen and (min-width: 768px) {
  .article__heading3 {
    font-size: 1.375rem;
    margin-top: 1.875rem;
  }
}

.article__heading4 {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .article__heading4 {
    margin-top: 1.375rem;
  }
}

.article__heading4 span {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  font-family: "IBM Plex Sans JP", sans-serif;
  color: #fff;
  line-height: 1.625;
  letter-spacing: 0.026em;
  border-radius: 0.1875rem;
  background: -webkit-gradient(linear, left top, right top, from(#ef57dd), to(#575def));
  background: linear-gradient(to right, #ef57dd, #575def);
  padding: 0.125rem 0.625rem 0;
}

.article__image-wrap-large {
  width: 100%;
  margin: 0 auto;
}

.article__image-wrap-medium {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .article__image-wrap-medium {
    width: 70%;
  }
}

.article__notes {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .article__notes {
    font-size: 0.8125rem;
  }
}

.article__video {
  margin: 0 auto;
  padding-top: 56.25%;
  position: relative;
  width: 100%;
}

.article__video iframe {
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  position: absolute;
}

.article__btn {
  text-align: center;
}

.article__large-btn {
  text-align: center;
  margin-top: 5.625rem;
}

.back-top {
  margin-top: 6.25rem;
}
@media screen and (min-width: 768px) {
  .back-top {
    margin-top: 7.5rem;
  }
}

.back-top__link {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: "IBM Plex Sans JP", sans-serif;
  letter-spacing: 0.026em;
  color: #000000;
  text-align: center;
  text-transform: uppercase;
}

.background {
  background: url(../../assets/images/top/treatment/background-sp.png) repeat center center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .background {
    background: url(../../assets/images/top/treatment/background-pc.png) repeat center center;
    background-size: cover;
  }
}

/* ---------- 改行 〜 more：以上、less：以下 | ここから ---------- */
/* 430px以下で改行 */
@media screen and (min-width: 430px) {
  .br-430-less {
    display: none;
  }
}

/* 500px以下で改行 */
@media screen and (min-width: 500px) {
  .br-500-less {
    display: none;
  }
}

/* 768px以下で改行 */
@media screen and (min-width: 768px) {
  .br-768-less {
    display: none;
  }
}

/* 768px以上で改行 */
.br-768-more {
  display: none;
}
@media screen and (min-width: 768px) {
  .br-768-more {
    display: block;
  }
}

/* 1000px以下で改行 */
@media screen and (min-width: 768px) {
  .br-1000-less {
    display: none;
  }
}

/* 1000px以上で改行 */
.br-1000-more {
  display: none;
}
@media screen and (min-width: 1000px) {
  .br-1000-more {
    display: block;
  }
}

/* 1480px以上で改行 */
.br-1480-more {
  display: none;
}
@media screen and (min-width: 1480px) {
  .br-1480-more {
    display: block;
  }
}

/* 1920px以上で改行 */
.br-1920-more {
  display: none;
}
@media screen and (min-width: 1920px) {
  .br-1920-more {
    display: block;
  }
}

/* ---------- 改行 | ここまで ---------- */
/* ---------- 表示・非表示 〜 more：以上、less：以下 | ここから ---------- */
/* PCのとき非表示 */
@media screen and (min-width: 768px) {
  .pc-none {
    display: none;
  }
}

/* SPのとき非表示 */
.sp-none {
  display: none;
}
@media screen and (min-width: 768px) {
  .sp-none {
    display: block;
  }
}

/* ---------- 表示・非表示 〜 more：以上、less：以下 | ここまで ---------- */
.btn.btn__more-news {
  position: relative;
  display: inline-block;
  font-size: 1rem;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  border: 1px solid #000000;
  border-radius: 0.125rem;
  background: -webkit-gradient(linear, left top, right top, from(#ef57dd), to(#575def));
  background: linear-gradient(to right, #ef57dd, #575def);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  padding: 0.5625rem 1.4375rem;
}
@media screen and (min-width: 768px) {
  .btn.btn__more-news {
    font-size: 0.8125rem;
    padding: 0.4375rem 1.09375rem 0.25rem;
  }
}

.btn.btn__more-news:hover {
  opacity: 0.6;
}

.btn.btn-character {
  padding: 0.625rem 1.875rem;
  display: inline-block;
  font-size: 0.9375rem;
  text-transform: uppercase;
  border: 4px solid #000;
  border-radius: 5px;
  color: #edff8b;
  background-color: #4f4c62;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-align: center;
  position: relative;
}

.btn.btn-character p {
  font-family: "Noto Sans Japanese", sans-serif;
  font-weight: 900;
  font-size: clamp(1rem, 0.18rem + 3.75vw, 1.188rem); /* 16 ~ 19 / 350 ~ 430 */
  line-height: 1.3684210526;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 430px) {
  .btn.btn-character p {
    font-size: 1.1875rem;
  }
}
@media screen and (min-width: 768px) {
  .btn.btn-character p {
    font-size: 1.375rem;
  }
}

.btn.btn-character span {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: 0.625rem;
  line-height: 1.4;
  letter-spacing: 0.18em;
}

.btn.btn-character::after {
  position: absolute;
  content: "";
  background: url(../../assets/images/common/icon-arrow-gray.png) no-repeat center center/contain;
  width: 2rem;
  height: 2rem;
  top: 50%;
  right: -2.0625rem;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn.btn-character:hover {
  opacity: 1;
}

.btn.btn-character:hover::after {
  right: -2.5rem;
}

.character {
  background: url(../../assets/images/top/character/character-back-sp.png) no-repeat center center/cover;
  padding-top: 5.625rem;
  padding-bottom: 5.625rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .character {
    background: url(../../assets/images/top/character/character-back-pc.png) no-repeat center center/cover;
    padding-top: 8.125rem;
    padding-bottom: 8.125rem;
  }
}

.character__line-bar {
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (min-width: 768px) {
  .character::before,
  .character::after {
    content: "";
    position: absolute;
    background: url(../../assets/images/top/treatment/character-treatment.png) no-repeat center center/cover;
    bottom: 0;
    width: 0.6944444444vw;
    height: 105.2777777778vw;
    height: 100%;
  }
}
@media screen and (min-width: 1440px) {
  .character::before,
  .character::after {
    width: 0.625rem;
    height: 94.75rem;
  }
}

@media screen and (min-width: 768px) {
  .character::before {
    left: clamp(0.625rem, -8.75rem + 12.5vw, 2.5rem);
  }
}

@media screen and (min-width: 768px) {
  .character::after {
    right: clamp(0.625rem, -8.75rem + 12.5vw, 2.5rem);
  }
}

.character__title {
  max-width: 22rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .character__title {
    min-width: 35rem;
  }
}

.character__title::after {
  content: "";
  position: absolute;
  top: -2.25rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 1.375rem;
  height: 1.375rem;
  background: url(../../assets/images/common/star.png) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .character__title::after {
    top: -3.75rem;
    width: 2rem;
    height: 2rem;
  }
}

.character__container {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .character__container {
    margin-top: 2.25rem;
  }
}

.character__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 1.90625rem; /* 上下の余白 */
  -webkit-column-gap: 4.4%;
     -moz-column-gap: 4.4%;
          column-gap: 4.4%; /* 左右の余白 */
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .character__items {
    max-width: 100%;
    row-gap: 1.875rem; /* 上下の余白 */
    -webkit-column-gap: 1.75%;
       -moz-column-gap: 1.75%;
            column-gap: 1.75%; /* 左右の余白 */
  }
}

.character__item {
  /* デフォルトの位置 */
  position: relative;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease; /* アニメーションの速度とタイプを設定 */
  width: 30.4%;
}
@media screen and (min-width: 768px) {
  .character__item {
    width: 18.6%;
  }
}

.character__item:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px); /* ホバー時に上に10ピクセル移動 */
}

.character__item a:hover {
  opacity: 1;
}

.character__item.character__item-large {
  width: 47.8%;
}
@media screen and (min-width: 768px) {
  .character__item.character__item-large {
    width: 37.7%;
  }
}

@media screen and (min-width: 768px) {
  .character__item.character__item-large:nth-child(2) {
    margin-left: 1.13%;
  }
}

@media screen and (min-width: 768px) {
  .character__item.character__item-large:nth-child(1) {
    margin-left: 10.5%;
  }
}

@media screen and (min-width: 768px) {
  .character__item.character__item-large:nth-child(2) {
    margin-right: 10.5%;
  }
}

.character__item-image {
  width: 100%;
}

.character__item-image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.character__item-text {
  margin-top: 1.5625rem;
  text-align: center;
}
.character__item--01 .character__item-text,
.character__item--02 .character__item-text {
  right: 36%;
}

.character__item--01 .character__item-text {
  color: #807c98;
}

.character__item--02 .character__item-text {
  color: #ff93e2;
}

.character__item--03 .character__item-text {
  color: #ff7510;
}

.character__item--04 .character__item-text {
  color: #84429d;
}

.character__item--05 .character__item-text {
  color: #5442db;
}

.character__item--06 .character__item-text {
  color: #ef9090;
}

.character__item--07 .character__item-text {
  color: #5d9ce6;
}

.character__item-ja {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: 0.026em;
}
@media screen and (min-width: 768px) {
  .character__item-ja {
    font-size: 1.6875rem;
  }
}

.character__item-ja.character__item-ja-large {
  font-size: 1.375rem;
}
@media screen and (min-width: 768px) {
  .character__item-ja.character__item-ja-large {
    font-size: 1.875rem;
  }
}

.character__item-en {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: 0.5rem;
  text-transform: uppercase;
  margin-top: 0.3125rem;
  letter-spacing: 0.145em;
}
@media screen and (min-width: 768px) {
  .character__item-en {
    font-size: 0.625rem;
  }
}

.character__item-en.character__item-en-large {
  font-size: 0.625rem;
}
@media screen and (min-width: 768px) {
  .character__item-en.character__item-en-large {
    font-size: 0.8125rem;
  }
}

.character__btn {
  max-width: 22rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .character__btn {
    margin-top: 3.75rem;
    max-width: 25.875rem;
  }
}

#cboxLoadingOverlay,
#cboxLoadedContent,
#cboxContent {
  background: transparent;
}

#cboxOverlay {
  background: #fff;
  opacity: 0.95;
}

/* モーダル閉じるボタン */
#cboxClose {
  background-image: url(../../assets/images/common/cross-black.png);
  background-size: contain;
  background-position: 50% 50%;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  width: 2.775rem;
  height: 1.70875rem;
  top: -1.75rem;
}
@media screen and (min-width: 768px) {
  #cboxClose {
    width: 3.9rem;
    height: 2.406875rem;
    top: -2.4375rem;
    bottom: auto;
    left: auto;
  }
}

#colorbox {
  height: 90%;
}

#cboxClose:hover {
  opacity: 0.6;
  background-position: 50% 50%;
}

/* モーダルの「×」を表示させるスペース */
#cboxContent {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  #cboxContent {
    margin-top: 2.5rem;
  }
}

.contents-pc-lower {
  display: none;
}
@media screen and (min-width: 768px) {
  .contents-pc-lower {
    display: block;
    height: inherit;
  }
}

@media screen and (min-width: 768px) {
  .contents-pc-lower__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: inherit;
  }
}

@media screen and (min-width: 768px) {
  .contents-pc-lower__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: inherit;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .contents-pc-lower__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: inherit;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.contents-pc-lower__title {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: 1.25vw;
  line-height: 1.3888888889;
  text-transform: capitalize;
  color: #4f4c62;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 1.0416666667vw;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

@media screen and (min-width: 768px) {
  .contents-pc-lower__items li:not(:last-child) .contents-pc-lower__title {
    border-right: 1px solid #eaedf0;
    height: 1.25vw;
  }
}

.contents-pc-lower__title:hover,
.contents-pc-lower__title.is-active {
  color: #ef57dd;
  opacity: 1;
}

.contents-pc-lower__sns {
  display: none;
}
@media screen and (min-width: 768px) {
  .contents-pc-lower__sns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .contents-pc-lower__sns a {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .contents-pc-lower__x,
  .contents-pc-lower__fantia {
    width: 2.7777777778vw;
  }
}

.contents-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .contents-pc {
    position: absolute;
    top: 20.2777777778vw;
    left: 3.75vw;
    display: block;
    z-index: 10;
  }
}

@media screen and (min-width: 768px) {
  .contents-pc__nav {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (min-width: 768px) {
  .contents-pc__nav::before {
    position: absolute;
    content: "";
    background: url(../../assets/images/common/contents.svg) no-repeat center center/cover;
    width: 0.3125vw;
    height: 3.1333333333vw;
    top: 0.3472222222vw;
    left: -1.6666666667vw;
  }
}

@media screen and (min-width: 768px) {
  .contents-pc__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (min-width: 768px) {
  .contents-pc__item:nth-child(n+2) {
    margin-top: 0.4861111111vw;
  }
}

.contents-pc__title {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: 1.25vw;
  line-height: 1.3888888889;
  text-transform: capitalize;
  color: #4f4c62;
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.contents-pc__item:hover .contents-pc__title {
  color: #ef57dd;
  opacity: 1;
}

.contents-pc__sns {
  display: none;
}
@media screen and (min-width: 768px) {
  .contents-pc__sns {
    position: absolute;
    top: 44.375vw;
    left: 3.3333333333vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 1;
  }
}

@media screen and (min-width: 768px) {
  .contents-pc__sns::before {
    position: absolute;
    content: "";
    background: url(../../assets/images/common/social.svg) no-repeat center center/cover;
    width: 0.3125vw;
    height: 2.3625vw;
    top: 0.3472222222vw;
    left: -1.3194444444vw;
  }
}

@media screen and (min-width: 768px) {
  .contents-pc__sns a {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .contents-pc__x,
  .contents-pc__fantia {
    width: 2.7777777778vw;
  }
}

.contents-sp__logo {
  max-width: 24.0625rem;
  width: 100%;
  height: 100%;
}

.contents-sp__logo {
  display: block;
  width: 100%;
}

.contents-sp__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
  margin-top: 1rem;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contents-sp__nav::before {
  position: absolute;
  content: "";
  background: url(../../assets/images/common/contents.svg) no-repeat center center/cover;
  width: 0.3125rem;
  height: 3.25rem;
  top: 1rem;
  left: 0.1875rem;
}

.contents-sp__items {
  color: #fff;
  width: calc(50% - 1.875rem);
}

.contents-sp__item {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  line-height: 1.0416666667;
  text-transform: capitalize;
}

.contents-sp__title {
  display: inline-block;
  padding-top: 0.625rem;
  padding-bottom: 0.6875rem;
  padding-left: 2.4375rem;
  width: 100%;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.contents-sp__title:hover {
  color: #ef57dd;
  opacity: 1;
}

.contents-sp__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 3.625rem;
  margin-top: 3.125rem;
  padding-left: 1.875rem;
  position: relative;
}

.contents-sp__sns::before {
  position: absolute;
  content: "";
  background: url(../../assets/images/common/social.svg) no-repeat center center/cover;
  width: 0.28125rem;
  height: 2.125rem;
  top: 54%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.contents-sp__sns a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contents-sp__sns a img {
  margin-right: auto;
}

.contents-sp__social {
  width: 1.5625rem;
}

.contents-sp__social img {
  width: 0.28125rem;
}

.contents-sp__fantia {
  padding-left: 0.625rem;
}

.contents-sp__x img,
.contents-sp__fantia img {
  width: 3.625rem;
  height: 100%;
}

.contents-sp__cross {
  width: 4rem;
  height: 3.125rem;
  margin-top: 8.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
  padding: 0.625rem;
}

.drawer {
  z-index: 1000;
  position: relative;
}
.drawer__hamburger {
  width: 3.75rem;
  height: 3.375rem;
  cursor: pointer;
  position: fixed;
}

.drawer__contents {
  background: url(../../assets/images/common/drawer-back.jpg) no-repeat center center/cover;
  color: #fff;
  height: 100%;
  overflow: scroll;
  padding-top: 8.875rem;
  padding-bottom: 9.375rem;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  z-index: 999;
  display: none;
}

.experience {
  position: relative;
  width: 100%;
  padding: 4.6511627907vw 0;
}
@media screen and (min-width: 768px) {
  .experience {
    padding: 0;
  }
}

.experience::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../../assets/images/top/experience/slide-back-sp.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .experience::before {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    background-image: url(../../assets/images/top/experience/slide-back-pc.jpg);
    width: 88.8888888889vw;
    height: 5.9722222222vw;
  }
}

.experience__inner {
  width: 88.8372093023%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .experience__inner {
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .experience__container {
    width: 66.3194444444vw;
    margin: auto;
  }
}

.experience__link {
  display: block;
  width: 100%;
}

.experience__swiper-slide-img {
  width: 100%;
}

.experience__swiper-slide-img img {
  width: 100%;
  aspect-ratio: 180/101;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .experience__swiper-slide-img img {
    aspect-ratio: 220/123.44;
  }
}

/* -------------------- フェードインアニメーション -------------------- */
.fade-up {
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.fade-right {
  opacity: 0;
  -webkit-transform: translate(50px, 0);
          transform: translate(50px, 0);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.fade-down {
  opacity: 0;
  -webkit-transform: translate(0, -50px);
          transform: translate(0, -50px);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.fade-left {
  opacity: 0;
  -webkit-transform: translate(-50px, 0);
          transform: translate(-50px, 0);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.fade-out {
  opacity: 0;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.fade-up.scrollin,
.fade-right.scrollin,
.fade-down.scrollin,
.fade-left.scrollin {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.fade-out.scrollin {
  opacity: 1;
}

/* -------------------- フェードインアニメーション ここまで -------------------- */
/* -------------------- テキストのマスクエフェクト ------------------------- */
.js-text-mask {
  position: relative;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  --translateX: 0px;
}

.js-text-mask::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateX(var(--translateX));
          transform: translateX(var(--translateX));
  background-color: #333333;
}

.js-text-mask.js-text-mask-blue::before {
  background-color: #575def;
}

.js-text-mask.js-text-mask-yellow::before {
  background-color: #edff8b;
}

/* -------------------- テキストのマスクエフェクト ここまで ------------------------- */
.footer {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
  text-align: center;
}

.footer__head {
  max-width: 11rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.footer__head img {
  width: 100%;
  height: 100%;
}

.footer__container {
  margin-top: 3.625rem;
}
@media screen and (min-width: 768px) {
  .footer__container {
    margin-top: 3rem;
  }
}

.footer__container-title {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.25rem;
}

.footer__container {
  margin-top: 3.625rem;
}
.footer__banner {
  margin-top: 1.25rem;
}

.footer__banner a {
  display: block;
  max-width: 12.5rem;
  width: 100%;
  margin: auto;
}

.footer__sns-wrapper {
  margin-top: 3.625rem;
}
.footer__sns {
  margin-top: 0.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 11.25rem;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.footer__sns a {
  width: 33.333%;
  padding: 0.625rem;
}

.footer__sns img {
  max-width: 2.625rem;
  width: 100%;
}

.footer__bottom {
  margin-top: 3.625rem;
}
@media screen and (min-width: 768px) {
  .footer__bottom {
    margin-top: 2.375rem;
  }
}

.footer__copyright {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.045em;
  color: rgba(0, 0, 0, 0.7);
}

.gallery {
  background: url(../../assets/images/top/gallery/gallery-back-sp.png) no-repeat center center/cover;
  padding-top: 4.375rem;
  padding-bottom: 5.625rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .gallery {
    background: url(../../assets/images/top/gallery/gallery-back-pc.png) no-repeat center center/cover;
    padding-top: 6.875rem;
    padding-bottom: 5.625rem;
  }
}

.gallery__body {
  margin-top: 1.875rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .gallery__body {
    margin-top: 3.75rem;
    max-width: 71.25rem;
  }
}

.gallery__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 2.11fr 1fr 2.11fr 1fr;
  row-gap: 0.75rem;
  -webkit-column-gap: 1.375rem;
     -moz-column-gap: 1.375rem;
          column-gap: 1.375rem;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .gallery__cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 1.375rem;
       -moz-column-gap: 1.375rem;
            column-gap: 1.375rem;
    row-gap: 1.875rem;
  }
}

.gallery__card {
  width: 100%;
  height: 100%;
  border: 2px solid #fff;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .gallery__card {
    width: calc(33% - 1rem);
  }
}

.gallery__card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 382/214;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}

@media screen and (min-width: 768px) {
  .gallery__card:nth-of-type(2n + 1) {
    -webkit-transform: rotate(-1deg);
            transform: rotate(-1deg);
  }
}

@media screen and (min-width: 768px) {
  .gallery__card:nth-of-type(2n) {
    -webkit-transform: rotateZ(1deg);
            transform: rotateZ(1deg);
  }
}

.gallery__card--01 {
  grid-column: 1/3;
  grid-row: 1/2;
}

.gallery__card--02 {
  grid-column: 1/2;
  grid-row: 2/3;
}

.gallery__card--03 {
  grid-column: 2/3;
  grid-row: 2/3;
}

.gallery__card--04 {
  grid-column: 1/3;
  grid-row: 3/4;
}

.gallery__card--05 {
  grid-column: 1/2;
  grid-row: 4/5;
}

.gallery__card--06 {
  grid-column: 2/3;
  grid-row: 4/5;
}

.gallery__card--07 {
  grid-column: 1/3;
  grid-row: 5/6;
}

.gallery__card--08 {
  grid-column: 1/2;
  grid-row: 6/7;
}

.gallery__line-bar {
  position: absolute;
  bottom: 0;
  left: 0;
}

.header {
  position: relative;
}

.header__inner {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding: 0 1.875rem;
  }
}

.header__logo {
  width: 52.5581395349vw;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .header__logo {
    width: 21.25vw;
    margin: 0;
  }
}

.header__logo img {
  display: block;
  width: 100%;
}

.header--lower {
  height: 5.8125rem;
}
@media screen and (min-width: 768px) {
  .header--lower {
    height: 9.5833333333vw;
  }
}

.header--lower .header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: inherit;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .header--lower .header__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: inherit;
    gap: 2.5rem;
  }
}

/* 現在表示されているページのメニューのフォントの色を変更する */
.pc-nav__item > a.current,
.contents-sp__item > a.current {
  color: #ef57dd;
}

.info-text {
  width: 100%;
  padding: 1.875rem 0;
  border-top: 1px solid #4f4c62;
}
@media screen and (min-width: 768px) {
  .info-text {
    padding: 2.5rem 0;
  }
}

.info-text img {
  width: 100%;
  max-width: 10rem;
  margin-left: auto;
  margin-right: auto;
}

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

.keywords {
  padding-top: 4.0625rem;
  padding-bottom: 4.375rem;
}
@media screen and (min-width: 768px) {
  .keywords {
    padding-top: 0;
    padding-bottom: 5.625rem;
  }
}

.keywords__inner {
  overflow: hidden;
}

.keywords__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  text-transform: uppercase;
}

.keywords__title i {
  width: calc(50% - 5rem);
  height: 1px;
  display: inline-block;
  vertical-align: middle;
  background-color: #575def;
}
@media screen and (min-width: 768px) {
  .keywords__title i {
    width: calc(50% - 4rem);
  }
}

.keywords__title p {
  width: 11.25rem;
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 0.045em;
  text-indent: 0.045em;
  color: #575def;
  padding: 0 0.9375rem;
}
@media screen and (min-width: 768px) {
  .keywords__title p {
    width: 10rem;
    font-size: 1.25rem;
    letter-spacing: 0.0625rem;
    padding: 0 0.3125rem;
  }
}

.keywords__container {
  width: calc(50vw + 16.375rem);
  margin-top: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .keywords__container {
    margin-top: 1.875rem;
    width: 100%;
    overflow: visible;
  }
}

.keywords__swiper {
  width: 100%;
  height: 100%;
}

.keywords__swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap; /* すべてのカードを1行に並べる */
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (min-width: 768px) {
  .keywords__swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.1875rem 1.25rem;
  }
}

.keywords__swiper-slide {
  width: 16.375rem;
  height: auto;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .keywords__swiper-slide {
    width: 100%;
  }
}

.keywords__card {
  background-image: linear-gradient(150deg, rgba(239, 87, 221, 0.7) 0%, rgba(87, 93, 239, 0.7) 100%);
  padding: 0.3125rem;
  border-radius: 0.3125rem;
  height: 100%;
}

.keywords__card-inside {
  border: 1px solid #fff;
  padding: 1.0625rem 1.25rem;
  border-radius: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .keywords__card-inside {
    padding: 1.5rem 1rem;
  }
}

.keywords__card,
.keywords__card-inside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%; /* 必要に応じて */
}

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

.keywords__title-en {
  font-family: "Nunito", sans-serif;
  font-weight: 500;
  font-size: 0.625rem;
  line-height: 2.5;
  color: #edff8b;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
}
@media screen and (min-width: 768px) {
  .keywords__title-en {
    letter-spacing: 0.15625rem;
    text-indent: 0.15625rem;
  }
}

.keywords__title-ja {
  font-size: 1.0625rem;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.1304347826;
  color: #fff;
  margin-top: 0.1875rem;
}
@media screen and (min-width: 430px) {
  .keywords__title-ja {
    font-size: 1.4375rem;
  }
}
@media screen and (min-width: 768px) {
  .keywords__title-ja {
    margin-top: 0.5rem;
    font-size: clamp(1.125rem, -5.75rem + 10vw, 1.438rem);
  }
}

.keywords__card-body {
  margin-top: 0.875rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 13.25rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .keywords__card-body {
    margin-top: 1rem;
  }
}

.keywords__card-body p {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 2;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .keywords__card-body p {
    line-height: 2.2;
    letter-spacing: 0.0625rem;
    font-size: 0.8125rem;
  }
}

.line-bar {
  width: 100%;
  height: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .line-bar {
    height: 0.75rem;
  }
}

.line-bar.music__line-bar {
  height: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .line-bar.music__line-bar {
    height: 0.5rem;
  }
}

.line-bar img {
  width: 100%;
  height: 100%;
}

.pc-nav__item.link-disable a {
  color: #eaedf0;
  pointer-events: none;
}

.sp__nav-item.link-disable a {
  color: #807c98;
  pointer-events: none;
}

.pc-nav__item.link-disable:hover a {
  color: #eaedf0;
}

.sp-nav__item.link-disable:hover a {
  color: #807c98;
}

.modal-age {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  opacity: 1;
  background: linear-gradient(45deg, #ff81af, #f5f5f5, #b4f0ff);
  background-size: 400% 400%;
  -webkit-animation: bggradient 30s ease infinite;
          animation: bggradient 30s ease infinite;
}

@-webkit-keyframes bggradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes bggradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.modal-age__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  padding: 0 1.25rem;
  text-align: center;
  background-color: rgba(255, 255, 255, 0);
}

.modal-age__content-title {
  font-size: 2.25rem;
  color: #7a0000;
  letter-spacing: 0.26rem;
}

.modal-age__confirm {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #333333;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .modal-age__confirm {
    font-size: 1.25rem;
  }
}

.modal-age__button-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  text-align: center;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .modal-age__button-area {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.modal-age__yes-btn,
.modal-age__no-btn {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  color: #333333;
  width: 10rem;
  font-size: 1rem;
  background-color: #fff;
  border-radius: 2rem;
  padding: 0.625rem 0;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.modal-age__no-btn {
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .modal-age__no-btn {
    margin-top: 0;
    margin-left: 1.25rem;
  }
}

.modal-age__yes-btn:hover,
.modal-age__no-btn:hover {
  opacity: 0.6;
}

.modal-age__yes-btn {
  color: #001cbe;
}

.modal-age__no-btn {
  color: #be0000;
}

.modal-age__footer {
  position: absolute;
  bottom: 0;
}

.modal-age__footer-copyright {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.045em;
  color: rgba(0, 0, 0, 0.7);
  padding: 1.25rem;
}

.modal-age__orthros {
  margin: 1.875rem auto 0;
  max-width: 12.5rem;
  width: 100%;
}

/* モーダルと背景の指定 */
.modal-news {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 3.5rem 2.25rem 6.25rem 2.25rem;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 9999;
  background-color: #fff;
  opacity: 0.95;
}
@media screen and (min-width: 768px) {
  .modal-news {
    padding: 5rem 0 6.25rem 0;
  }
}

/* クラスが追加された時の指定 */
.modal-news.is-active-modal {
  opacity: 0.95;
  visibility: visible;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

/* モーダル内側の指定 */
.modal-news-container {
  position: relative;
}

/* モーダルを閉じるボタンの指定 共通 */
.modal-close {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-image: url(../../assets/images/common/cross-black.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 2.775rem;
  height: 1.70875rem;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .modal-close {
    width: 3.9rem;
    height: 2.406875rem;
  }
}

/* モーダルを閉じるボタンの指定 トップ */
.modal-close.modal-close-top {
  top: 0;
  right: 0;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .modal-close.modal-close-top {
    top: -3.125rem;
    right: 0;
  }
}
@media screen and (min-width: 1440px) {
  .modal-close.modal-close-top {
    top: -1.25rem;
    right: -6.25rem;
  }
}

/* モーダルを閉じるボタンの指定 ボトム */
.modal-close.modal-close-bottom {
  bottom: -3.125rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .modal-close.modal-close-bottom {
    bottom: -4.375rem;
  }
}

.js-modal-news {
  display: none; /* 初期状態では非表示 */
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.is-active-modal {
  display: block; /* 表示スタイルに応じて */
  opacity: 1;
}

.movie__container {
  max-width: 33.75rem;
  width: 100%;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .movie__container {
    max-width: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .movie__title.section-title {
    width: 16.3%;
  }
}

.movie__area {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .movie__area {
    margin-top: 0;
    width: 77.5%;
    margin-left: 6.2%;
  }
}

.movie__swiper-container {
  position: relative;
}
@media screen and (min-width: 768px) {
  .movie__swiper-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.movie__play {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .movie__play {
    width: 79.8%;
  }
}

.movie__swiper-slide {
  position: relative;
  width: 100%;
}

.movie__youtube {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #000000;
  border-radius: 0.3125rem;
  overflow: hidden;
}

.movie__swiper-slide-title-wrapper {
  position: absolute;
  left: 0;
  bottom: 7.0625rem;
  z-index: 1;
}
@media screen and (min-width: 375px) {
  .movie__swiper-slide-title-wrapper {
    bottom: 7.8125rem;
  }
}
@media screen and (min-width: 430px) {
  .movie__swiper-slide-title-wrapper {
    bottom: 4.5625rem;
  }
}
@media screen and (min-width: 768px) {
  .movie__swiper-slide-title-wrapper {
    bottom: -1.0625rem;
  }
}

.movie__swiper-slide-title {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 2.0833333333;
  letter-spacing: 0.026em;
  border: 1px solid #000000;
  border-radius: 0.1875rem;
  background-color: #fff;
  padding: 0.0625rem 0.5rem;
}
@media screen and (min-width: 768px) {
  .movie__swiper-slide-title {
    font-size: 1.0625rem;
    line-height: 1.6470588235;
    padding: 0.5rem 0.625rem;
  }
}

.movie__thumbnail {
  width: 100%;
  aspect-ratio: 705/396;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.movie__thumb-items {
  width: 100%;
  margin-top: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .movie__thumb-items {
    width: 18.1%;
    margin-top: 0;
    margin-left: 2.1%;
  }
}

.movie__thumb-item {
  width: 100%;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.movie__thumb-item:hover {
  opacity: 0.6;
}

.movie__thumb-item img {
  width: 100%;
  aspect-ratio: 160/90;
  -o-object-fit: cover;
     object-fit: cover;
}

.music {
  position: relative;
  padding: 5.625rem 0;
}
@media screen and (min-width: 768px) {
  .music {
    padding: 7rem 0;
  }
}

.music__line-bar {
  position: absolute;
  top: -0.4375rem;
  left: 0;
}
@media screen and (min-width: 768px) {
  .music__line-bar {
    top: -0.75rem;
  }
}

@media screen and (min-width: 768px) {
  .music__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 3.12%;
  }
}

.music__title {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .music__title {
    width: 19.34%;
  }
}

.music__title picture {
  margin-top: 1.875rem;
  max-width: 10rem;
  width: 100%;
}

.music__body {
  max-width: 600px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .music__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    gap: 5.12%;
    width: 77.54%;
  }
}

.music__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.9375rem;
  max-width: 19.625rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .music__cards {
    width: 35.5%;
  }
}

.music__info {
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .music__info {
    margin-top: 0;
    width: 59.38%;
  }
}

.music__info-head {
  font-weight: 900;
}

.music__info-text {
  font-family: "Nunito", sans-serif;
  color: #ef57dd;
  font-size: 0.625rem;
  text-transform: uppercase;
}

.music__info-title {
  line-height: 1.3076923077;
  margin-top: 1rem;
  white-space: nowrap;
}

.music__info-title span {
  font-size: 1.625rem;
  position: relative;
}

.music__info-title span::after {
  position: absolute;
  content: "";
  background-color: #edff8b;
  width: 100%;
  height: 0.625rem;
  top: 50%;
  left: 0;
  z-index: -1;
}

.music__info-price {
  margin-top: 0.625rem;
  font-family: "Nunito", sans-serif;
  font-size: 1.375rem;
}

.music__info-price span {
  font-size: 0.8125rem;
}

.music__info-description {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .music__info-description {
    margin-top: 1.875rem;
  }
}

.music__info-description-wrapper:nth-child(n+2) {
  margin-top: 2.125rem;
}

.music__info-description-text {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 2.1538461538;
}
@media screen and (min-width: 768px) {
  .music__info-description-text {
    font-size: 0.8125rem;
  }
}

.music__recorded-songs {
  margin-top: 2.75rem;
}
@media screen and (min-width: 768px) {
  .music__recorded-songs {
    margin-top: 2.5rem;
  }
}

.music__recorded-songs-container {
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.2%;
  text-transform: capitalize;
}
@media screen and (min-width: 768px) {
  .music__recorded-songs-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media screen and (min-width: 768px) {
  .music__recorded-songs-wrapper {
    width: 48.4%;
  }
}

.music__recorded-songs-wrapper:nth-child(n+2) {
  margin-top: 2.125rem;
}
@media screen and (min-width: 768px) {
  .music__recorded-songs-wrapper:nth-child(n+2) {
    margin-top: 0;
  }
}

.music__recorded-songs-disc {
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 2.1538461538;
  letter-spacing: 0.04em;
}

.music__recorded-songs li {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.04em;
  overflow-wrap: break-word;
}
@media screen and (min-width: 768px) {
  .music__recorded-songs li {
    line-height: 2.3333333333;
  }
}

.music__recorded-songs-tag {
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.026em;
  width: 100%;
  padding: 0.25rem 0.4375rem 0.125rem 0.4375rem;
  background-color: #ef57dd;
  display: inline;
  border-radius: 0.1875rem;
}

.mv {
  position: relative;
  display: block;
  width: 100%;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .mv {
    height: 64.9576388889vw;
    padding-top: 2.0833333333vw;
  }
}

@media screen and (min-width: 768px) {
  .mv::before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 0.2777777778vw;
    background: -webkit-gradient(linear, left top, right top, from(#ef57dd), to(#575def));
    background: linear-gradient(to right, #ef57dd, #575def);
  }
}

.mv::after {
  content: "";
  position: absolute;
  top: 123.023255814vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: url(../../assets/images/common/star.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 5.1162790698vw;
  height: 5.1162790698vw;
}
@media screen and (min-width: 768px) {
  .mv::after {
    content: none;
  }
}

.mv__bg {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .mv__bg {
    position: absolute;
    top: 2.0833333333vw;
    right: 0;
    left: auto;
    width: 88.8888888889vw;
  }
}

@media screen and (min-width: 768px) {
  .mv__container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
  }
}

.mv__img-orthros {
  width: 25.5813953488vw;
  margin: 6.976744186vw auto 0;
}
@media screen and (min-width: 768px) {
  .mv__img-orthros {
    display: none;
  }
}

.mv__img-text-main {
  width: 100vw;
}
@media screen and (min-width: 768px) {
  .mv__img-text-main {
    position: absolute;
    top: 40.1597222222vw;
    left: 25.8333333333vw;
    width: 59.4444444444vw;
  }
}

.mv__img-text-2024 {
  width: 41.8604651163vw;
  margin: 1.1627906977vw auto 0;
}
@media screen and (min-width: 768px) {
  .mv__img-text-2024 {
    position: absolute;
    top: 59.1319444444vw;
    left: 46.875vw;
    width: 17.3611111111vw;
    margin: 0;
  }
}

.mv__img-text-koi {
  width: 76.7441860465vw;
  margin: 15.5813953488vw auto 0;
}
@media screen and (min-width: 768px) {
  .mv__img-text-koi {
    position: absolute;
    top: 14.2777777778vw;
    right: 2.7777777778vw;
    width: 7.2916666667vw;
    margin: 0;
  }
}

.mv__movie {
  width: 71.1627906977vw;
  margin: 6.976744186vw auto 0;
}
@media screen and (min-width: 768px) {
  .mv__movie {
    position: absolute;
    width: 21.25vw;
    top: 5.5555555556vw;
    left: 2.0833333333vw;
    margin: 0;
  }
}

.mv__movie a {
  display: block;
}

.mv__movie-thumbnail {
  width: 100%;
  aspect-ratio: 306/172;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-movie-bg {
  position: relative;
  width: 100%;
  padding: 18.6046511628vw 0 9.375rem;
}
@media screen and (min-width: 768px) {
  .news-movie-bg {
    padding: 9.375vw 0 8.4375rem;
  }
}

.news-movie-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(../../assets/images/top/news/news-movie-bg-sp.png) no-repeat center center/cover;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .news-movie-bg::before {
    background: url(../../assets/images/top/news/news-movie-bg-pc.png) no-repeat center center/contain;
  }
}

@media screen and (min-width: 768px) {
  .news__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .news__title.section-title {
    width: 16.3%;
  }
}

.news__area {
  margin: 2.375rem auto 0;
  max-width: 33.75rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .news__area {
    margin: 0 auto;
    max-width: none;
    width: 77.5%;
    margin-left: 6.2%;
  }
}

.news__items {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .news__items {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5625rem;
  }
}

/* モーダルニュース */
.news__items-modal.news__items {
  gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .news__items-modal.news__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5625rem;
  }
}
@media screen and (min-width: 960px) {
  .news__items-modal.news__items {
    grid-template-columns: repeat(3, 1fr);
  }
}

.news__item {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.news__item.news__item--enable {
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/* モーダルニュース */
.news__item-modal.news__item.news__item--enable {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  border-left: 0.1875rem solid #ef57dd;
}
@media screen and (min-width: 768px) {
  .news__item-modal.news__item.news__item--enable {
    border-left: none;
  }
}

.news__item-link.news__item-link--enable {
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.news__item-link.news__item-link--enable::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  -webkit-box-shadow: 0 0 0 1.5px #ef57dd, 0 0 0 1.5px #ef57dd;
          box-shadow: 0 0 0 1.5px #ef57dd, 0 0 0 1.5px #ef57dd;
  border-radius: 0.25rem;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  background-color: #fff;
  z-index: -1;
}

/* モーダルニュース */
.news__item-link-modal.news__item-link.news__item-link--enable::before {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
}
@media screen and (min-width: 768px) {
  .news__item-link-modal.news__item-link.news__item-link--enable::before {
    -webkit-box-shadow: 0 0 0 1.5px #ef57dd, 0 0 0 1.5px #ef57dd;
            box-shadow: 0 0 0 1.5px #ef57dd, 0 0 0 1.5px #ef57dd;
    border-radius: 0.25rem;
  }
}

.news__item-link.news__item-link--enable::after {
  content: "";
  position: absolute;
  right: -0.3125rem;
  bottom: -0.3125rem;
  background-image: url(../../assets/images/common/circle-arrow-pink.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 2.3175rem;
  height: 2.568125rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .news__item-link.news__item-link--enable::after {
    width: 2.799375rem;
    height: 3.101875rem;
  }
}

/* モーダルニュース */
.news__item-link-modal.news__item-link.news__item-link--enable::after {
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  bottom: auto;
  background-image: url(../../assets/images/common/square-arrow.png);
  width: 1.5rem;
  height: 1.5rem;
}
@media screen and (min-width: 768px) {
  .news__item-link-modal.news__item-link.news__item-link--enable::after {
    top: auto;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    right: -0.3125rem;
    bottom: -0.3125rem;
    background-image: url(../../assets/images/common/circle-arrow-pink.png);
    width: 2.799375rem;
    height: 3.101875rem;
  }
}

.news__item.news__item--disable {
  background-color: #eaedf0;
  pointer-events: none;
}

/* モーダルニュース */
.news__item-modal.news__item.news__item--disable {
  background-color: transparent;
  pointer-events: none;
  border-left: 0.1875rem solid rgba(79, 76, 98, 0.2);
}
@media screen and (min-width: 768px) {
  .news__item-modal.news__item.news__item--disable {
    background-color: #eaedf0;
    border-left: none;
  }
}

.news__item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 1.875rem 1.5625rem;
  border-radius: 0.25rem;
  width: calc(100% - 0.625rem);
  height: calc(100% - 0.625rem);
  margin: 0.3125rem auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/* モーダルニュース */
.news__item-link-modal.news__item-link {
  padding: 0 2.0625rem 0 1.0625rem;
  border-radius: 0;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .news__item-link-modal.news__item-link {
    padding: 1.875rem 1.5625rem;
    border-radius: 0.25rem;
    width: calc(100% - 0.625rem);
    height: calc(100% - 0.625rem);
    margin: 0.3125rem auto;
  }
}

.news__item-link.news__item-link--disable {
  background-color: #eaedf0;
  border-radius: 0.25rem;
  -webkit-box-shadow: 0 0 0 1.5px #fff, 0 0 0 1.5px #fff;
          box-shadow: 0 0 0 1.5px #fff, 0 0 0 1.5px #fff;
  pointer-events: none;
}

/* モーダルニュース */
.news__item-link-modal.news__item-link.news__item-link--disable {
  background-color: transparent;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media screen and (min-width: 768px) {
  .news__item-link-modal.news__item-link.news__item-link--disable {
    background-color: #eaedf0;
    border-radius: 0.25rem;
    -webkit-box-shadow: 0 0 0 1.5px #fff, 0 0 0 1.5px #fff;
            box-shadow: 0 0 0 1.5px #fff, 0 0 0 1.5px #fff;
  }
}

.news__date {
  font-size: 0.75rem;
  font-weight: 900;
  font-family: "Nunito", sans-serif;
  color: #ef57dd;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/* モーダルニュース */
.news__date {
  font-size: 0.6875rem;
  line-height: 2.2727272727;
  font-weight: 900;
  font-family: "Nunito", sans-serif;
  color: #ef57dd;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .news__date {
    font-size: 0.75rem;
  }
}

.news__date.news__date--disable {
  color: #4f4c62;
}

.news__info {
  font-size: 0.9375rem;
  line-height: 1.8;
  letter-spacing: 0.026em;
  color: #ef57dd;
  margin-top: 0.9375rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .news__info {
    font-size: 0.8125rem;
    line-height: 2;
    margin-top: 1.25rem;
  }
}

/* モーダルニュース */
.news__info-modal.news__info {
  font-size: 0.8125rem;
  line-height: 2;
  margin-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .news__info-modal.news__info {
    font-size: 0.8125rem;
    line-height: 2;
    margin-top: 1.25rem;
  }
}

.news__info.news__info--disable {
  color: #000000;
}

.news__item.news__item--enable:hover .news__item-link.news__item-link--enable::after {
  background-image: url(../../assets/images/common/circle-arrow-white.png);
  opacity: 1;
}

/* モーダルニュース */
.news__item-modal.news__item.news__item--enable:hover .news__item-link-modal.news__item-link.news__item-link--enable::after {
  background-image: url(../../assets/images/common/square-arrow.png);
  opacity: 0.6;
}
@media screen and (min-width: 768px) {
  .news__item-modal.news__item.news__item--enable:hover .news__item-link-modal.news__item-link.news__item-link--enable::after {
    background-image: url(../../assets/images/common/circle-arrow-white.png);
    opacity: 1;
  }
}

.news__item.news__item--enable::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background: -webkit-gradient(linear, left top, right top, from(#ef57dd), to(#575def));
  background: linear-gradient(to right, #ef57dd, #575def);
  opacity: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/* モーダルニュース */
.news__item-modal.news__item.news__item--enable::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background: transparent;
  opacity: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .news__item-modal.news__item.news__item--enable::before {
    background: -webkit-gradient(linear, left top, right top, from(#ef57dd), to(#575def));
    background: linear-gradient(to right, #ef57dd, #575def);
  }
}

.news__item.news__item--enable:hover::before {
  opacity: 0.6;
}

.news__item.news__item--enable:hover .news__date,
.news__item.news__item--enable:hover .news__info {
  color: #fff;
}

/* モーダルニュース */
.news__item-modal.news__item.news__item--enable:hover .news__date,
.news__item-modal.news__item.news__item--enable:hover .news__info {
  color: #ef57dd;
}
@media screen and (min-width: 768px) {
  .news__item-modal.news__item.news__item--enable:hover .news__date,
  .news__item-modal.news__item.news__item--enable:hover .news__info {
    color: #fff;
  }
}

.news__item.news__item--enable:hover .news__item-link.news__item-link--enable {
  -webkit-box-shadow: 0 0 0 1.5px #fff, 0 0 0 1.5px #fff;
          box-shadow: 0 0 0 1.5px #fff, 0 0 0 1.5px #fff;
  opacity: 1;
}

/* モーダルニュース */
.news__item.news__item--enable:hover .news__item-link.news__item-link--enable {
  -webkit-box-shadow: none;
          box-shadow: none;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .news__item.news__item--enable:hover .news__item-link.news__item-link--enable {
    -webkit-box-shadow: 0 0 0 1.5px #fff, 0 0 0 1.5px #fff;
            box-shadow: 0 0 0 1.5px #fff, 0 0 0 1.5px #fff;
  }
}

/* モーダルニュース */
.news__item-modal.news__item.news__item--enable:hover .news__date-modal.news__date,
.news__item-modal.news__item.news__item--enable:hover .news__info-modal.news__info {
  opacity: 0.6;
}
@media screen and (min-width: 768px) {
  .news__item-modal.news__item.news__item--enable:hover .news__date-modal.news__date,
  .news__item-modal.news__item.news__item--enable:hover .news__info-modal.news__info {
    opacity: 1;
  }
}

.news__btn {
  margin-top: 2.1875rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .news__btn {
    text-align: right;
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .news__btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background-image: linear-gradient(to right, #000, #000 1px, transparent 1px, transparent 2px);
    background-size: 2px 1px;
    background-repeat: repeat-x;
    width: 84.2%;
    height: 1px;
  }
}

.play-icon {
  position: relative;
}

.play-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url(../../assets/images/common/icon-play.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 3.75rem;
  height: 3.75rem;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .play-icon::before {
    width: 8.625rem;
    height: 8.625rem;
  }
}

.play-icon.play-icon-mv::before {
  width: 13.9534883721vw;
  height: 13.9534883721vw;
}
@media screen and (min-width: 768px) {
  .play-icon.play-icon-mv::before {
    width: 5.5555555556vw;
    height: 5.5555555556vw;
  }
}

.product {
  padding-top: 3.75rem;
  padding-bottom: 4.375rem;
}
@media screen and (min-width: 768px) {
  .product {
    padding-top: 6.875rem;
    padding-bottom: 7.5rem;
  }
}

.product__title {
  text-align: center;
}

.product__container {
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.125rem;
}
@media screen and (min-width: 768px) {
  .product__container {
    margin-top: 1.5rem;
    gap: 3.375rem;
  }
}

@media screen and (min-width: 768px) {
  .product__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .product__content-headding {
    width: 20.6%;
    padding-top: 1.25rem;
  }
}

.product__content-headding p {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 0.6875rem;
  line-height: 1.2727272727;
  color: #575def;
  letter-spacing: 0.115625rem;
  text-transform: uppercase;
  position: relative;
}
@media screen and (min-width: 768px) {
  .product__content-headding p {
    font-size: 0.9375rem;
    line-height: 2.5;
    letter-spacing: 0.1875rem;
  }
}

.product__content-headding p::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -0.6875rem;
  width: 1.875rem;
  height: 0.0625rem;
  background: #575def;
}
@media screen and (min-width: 768px) {
  .product__content-headding p::after {
    bottom: -0.1875rem;
    width: 2.375rem;
  }
}

.product__content-body {
  padding-top: 0.75rem;
  padding-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .product__content-body {
    width: 79.4%;
    padding-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .product__content-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    grid-column-gap: 2.1875rem;
    grid-row-gap: 0.5rem;
  }
}

.product__content-item {
  padding-top: 1rem;
  padding-bottom: 0.5625rem;
  border-bottom: 1px solid #eaedf0;
}
@media screen and (min-width: 768px) {
  .product__content-item {
    padding-top: 1.25rem;
    padding-bottom: 1.125rem;
  }
}

.product__content-itemTtl {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 700;
  font-size: 0.625rem;
  line-height: 2.5;
  color: rgba(0, 0, 0, 0.6);
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .product__content-itemTtl {
    font-size: 0.9375rem;
  }
}

.product__content-itemtxt {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(0.875rem, 0.56rem + 1.44vw, 1.25rem); /* 14 ~ 20 / 350 ~ 767 */
  line-height: 1.3;
  margin-top: 0.3125rem;
  letter-spacing: 0.03125rem;
}
@media screen and (min-width: 768px) {
  .product__content-itemtxt {
    font-size: 1.625rem;
  }
}

.product__content-itemtxt span {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .product__content-itemtxt span {
    font-size: 0.75rem;
  }
}

.product__bar {
  width: 100%;
  height: 0.625rem;
  border-top: 1px solid #575def;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .product__bar {
    margin-top: 2.75rem;
    height: 1.875rem;
  }
}

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

.product__attention p {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.625rem;
  line-height: 2.2;
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: 0.01875rem;
}
@media screen and (min-width: 768px) {
  .product__attention p {
    letter-spacing: 0.09375rem;
  }
}

@media screen and (min-width: 768px) {
  .product__content--sm .product__content-headding {
    padding-top: 0.625rem;
  }
}

@media screen and (min-width: 768px) {
  .product__content-items--sm {
    grid-template-columns: 1.6fr 1fr 1fr;
  }
}

@media screen and (min-width: 768px) {
  .product__content-items--sm .product__content-item {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }
}
@media screen and (min-width: 768px) {
  .product__content-items--sm .product__content-itemTtl {
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 768px) {
  .product__content-items--sm .product__content-itemtxt {
    font-size: 1rem;
  }
}

.section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.section-title.news__title,
.section-title.movie__title,
.section-title.music__title {
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .section-title.news__title,
  .section-title.movie__title,
  .section-title.music__title {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.news__title.news__title--modal.section-title {
  text-align: left;
}

.section-title--yellow {
  color: #edff8b;
}

.section-title--blue {
  color: #575def;
}

.section-title__en {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  line-height: 1.35;
  text-transform: uppercase;
  text-indent: 0.005em; /* マスクエフェクトの範囲を延長する */
}
@media screen and (min-width: 768px) {
  .section-title__en {
    font-size: 3.25rem;
    line-height: 1.3653846154;
  }
}

.section-title__en.section-title__en--modal {
  font-size: 1.5625rem;
  color: #ef57dd;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .section-title__en.section-title__en--modal {
    font-size: clamp(1rem, 2.08vw, 1.563rem); /* 16 ~ 25 / 768 ~ 960 */
  }
}

.section-title__ja {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 700;
  font-size: 0.625rem;
  line-height: 1.2;
  letter-spacing: 0.21em;
  text-indent: 0.23em; /* マスクエフェクトの範囲を0.02em分延長する */
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .section-title__ja {
    font-size: 1.125rem;
  }
}

.section-title__ja.section-title__ja--modal {
  letter-spacing: 0.026em;
  font-size: 0.625rem;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .section-title__ja.section-title__ja--modal {
    font-size: 0.625rem;
  }
}

.section-title__sub-text {
  display: none;
}
@media screen and (min-width: 768px) {
  .section-title__sub-text {
    display: block;
    max-width: 10rem;
    width: 100%;
    margin-top: 1.875rem;
  }
}

.special-contents {
  padding-top: 3.75rem;
  padding-bottom: 4.375rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .special-contents {
    padding-top: 6.875rem;
    padding-bottom: 6rem;
  }
}

.special-contents__line-bar {
  position: absolute;
  top: 0;
  left: 0;
}

.special-contents__title {
  max-width: 37.5rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .special-contents__title {
    max-width: 29.875rem;
  }
}

.special-contents__body {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .special-contents__body {
    margin-top: 3.625rem;
  }
}

.special-contents__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 2.125rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .special-contents__cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 71.25rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 2.4%;
       -moz-column-gap: 2.4%;
            column-gap: 2.4%;
    row-gap: 2.125rem;
  }
}

.special-contents__card {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .special-contents__card {
    width: calc(33% - 1rem);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-left: 0;
    margin-right: 0;
  }
}

.special-contents__card-head {
  width: 100%;
  position: relative;
}

.special-contents__card-head::after {
  content: "";
  position: absolute;
  bottom: -0.0625rem;
  right: -0.0625rem;
  width: 2.8125rem;
  height: 3.125rem;
  background: url(../../assets/images/common/circle-arrow-pink.png) no-repeat center center/contain;
}

.special-contents__card-head img {
  width: 100%;
  aspect-ratio: 360/202;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
  border: 1px solid #000000;
}

.special-contents__card-body {
  margin-top: 0.875rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  letter-spacing: 0.025rem;
}

.special-contents__card-body p {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.6666666667;
  color: #000000;
}

.special-contents__card-bottom {
  margin-top: 0.4375rem;
  color: #ef57dd;
  font-family: "Nunito", sans-serif;
  font-weight: 900;
}

.special-contents__card-bottom time {
  font-size: 0.8125rem;
  vertical-align: top;
  letter-spacing: 0.6px;
}

.special-contents__card-bottom span {
  text-transform: uppercase;
  font-size: 0.5rem;
  padding-top: 10%;
  vertical-align: top;
}

.story {
  background: url(../../assets/images/top/story/story-back-sp.png) no-repeat center center/cover;
  padding-top: 3.125rem;
  padding-bottom: 5.625rem;
}
@media screen and (min-width: 768px) {
  .story {
    background: url(../../assets/images/top/story/story-back-pc.png) no-repeat center center/cover;
    padding-top: 8.125rem;
    padding-bottom: 8.75rem;
  }
}

.story__body {
  margin-top: 2.8125rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .story__body {
    margin-top: 3.25rem;
    max-width: 48.125rem;
  }
}

.story__body img {
  margin-left: auto;
  margin-right: auto;
}

.subpage-character {
  overflow: hidden;
  padding-bottom: 5.625rem;
}
@media screen and (min-width: 768px) {
  .subpage-character {
    padding-bottom: 8.75rem;
  }
}

.subpage-character__container {
  position: relative;
}

.subpage-character__thumb-item {
  position: relative;
}

.subpage-character__thumb-item-name {
  position: absolute;
  top: 50%;
  right: 0.375rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0.625rem;
  font-weight: 900;
  font-family: "Noto Sans Japanese", sans-serif;
  color: #fff;
  letter-spacing: 0;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .subpage-character__thumb-item-name {
    font-size: 0.625rem;
  }
}

.subpage-character__thumb-item-name.subpage-character__thumb-item-name-large {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .subpage-character__thumb-item-name.subpage-character__thumb-item-name-large {
    font-size: 0.875rem;
  }
}

.subpage-character__bg-thumb-item.bg-yui,
.subpage-character__bg-thumb-item.bg-akari,
.subpage-character__bg-thumb-item.bg-rin,
.subpage-character__bg-thumb-item.bg-yaeka,
.subpage-character__bg-thumb-item.bg-miku,
.subpage-character__bg-thumb-item.bg-mayumi,
.subpage-character__bg-thumb-item.bg-ruriko {
  position: absolute;
  top: 32%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 136.2790697674vw;
  height: 121.6279069767vw;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .subpage-character__bg-thumb-item.bg-yui,
  .subpage-character__bg-thumb-item.bg-akari,
  .subpage-character__bg-thumb-item.bg-rin,
  .subpage-character__bg-thumb-item.bg-yaeka,
  .subpage-character__bg-thumb-item.bg-miku,
  .subpage-character__bg-thumb-item.bg-mayumi,
  .subpage-character__bg-thumb-item.bg-ruriko {
    top: 52%;
    width: 136.1805555556vw;
    height: 68.8541666667vw;
  }
}
@media screen and (min-width: 1920px) {
  .subpage-character__bg-thumb-item.bg-yui,
  .subpage-character__bg-thumb-item.bg-akari,
  .subpage-character__bg-thumb-item.bg-rin,
  .subpage-character__bg-thumb-item.bg-yaeka,
  .subpage-character__bg-thumb-item.bg-miku,
  .subpage-character__bg-thumb-item.bg-mayumi,
  .subpage-character__bg-thumb-item.bg-ruriko {
    width: 122.5625rem;
    height: 61.96875rem;
  }
}

.subpage-character__bg-thumb-item.bg-yui.thumb-item-active {
  background-image: url(../../assets/images/character/back-yui-sp.png);
}
@media screen and (min-width: 768px) {
  .subpage-character__bg-thumb-item.bg-yui.thumb-item-active {
    background-image: url(../../assets/images/character/back-yui-pc.png);
  }
}

.subpage-character__bg-thumb-item.bg-akari.thumb-item-active {
  background-image: url(../../assets/images/character/back-akari-sp.png);
}
@media screen and (min-width: 768px) {
  .subpage-character__bg-thumb-item.bg-akari.thumb-item-active {
    background-image: url(../../assets/images/character/back-akari-pc.png);
  }
}

.subpage-character__bg-thumb-item.bg-rin.thumb-item-active {
  background-image: url(../../assets/images/character/back-rin-sp.png);
}
@media screen and (min-width: 768px) {
  .subpage-character__bg-thumb-item.bg-rin.thumb-item-active {
    background-image: url(../../assets/images/character/back-rin-pc.png);
  }
}

.subpage-character__bg-thumb-item.bg-yaeka.thumb-item-active {
  background-image: url(../../assets/images/character/back-yaeka-sp.png);
}
@media screen and (min-width: 768px) {
  .subpage-character__bg-thumb-item.bg-yaeka.thumb-item-active {
    background-image: url(../../assets/images/character/back-yaeka-pc.png);
  }
}

.subpage-character__bg-thumb-item.bg-miku.thumb-item-active {
  background-image: url(../../assets/images/character/back-miku-sp.png);
}
@media screen and (min-width: 768px) {
  .subpage-character__bg-thumb-item.bg-miku.thumb-item-active {
    background-image: url(../../assets/images/character/back-miku-pc.png);
  }
}

.subpage-character__bg-thumb-item.bg-mayumi.thumb-item-active {
  background-image: url(../../assets/images/character/back-mayumi-sp.png);
}
@media screen and (min-width: 768px) {
  .subpage-character__bg-thumb-item.bg-mayumi.thumb-item-active {
    background-image: url(../../assets/images/character/back-mayumi-pc.png);
  }
}

.subpage-character__bg-thumb-item.bg-ruriko.thumb-item-active {
  background-image: url(../../assets/images/character/back-ruriko-sp.png);
}
@media screen and (min-width: 768px) {
  .subpage-character__bg-thumb-item.bg-ruriko.thumb-item-active {
    background-image: url(../../assets/images/character/back-ruriko-pc.png);
  }
}

.subpage-character__wrapper {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .subpage-character__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    padding: 1.875rem 0;
    margin-top: 3.125rem;
  }
}

.subpage-character__img {
  position: relative;
  width: 100%;
  max-width: 31.25rem;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .subpage-character__img {
    max-width: none;
    width: 50%;
  }
}

.subpage-character__info-wrapper {
  margin-top: 4.375rem;
}
@media screen and (min-width: 768px) {
  .subpage-character__info-wrapper {
    margin-top: 0;
    width: 50%;
  }
}

.subpage-character__role {
  display: inline-block;
  font-size: 0.75rem;
  font-family: "Noto Sans Japanese", sans-serif;
  font-weight: 900;
  letter-spacing: 0.026em;
  color: #fff;
  padding: 0.375rem 0.625rem;
}
.subpage-character__role.role-yui {
  background-color: #807c98;
}

.subpage-character__role.role-akari {
  background-color: #ff93e2;
}

.subpage-character__role.role-rin {
  background-color: #ff7510;
}

.subpage-character__role.role-yaeka {
  background-color: #84429d;
}

.subpage-character__role.role-miku {
  background-color: #575def;
}

.subpage-character__role.role-mayumi {
  background-color: #ef9090;
}

.subpage-character__role.role-ruriko {
  background-color: #5d9ce6;
}

.subpage-character__name {
  font-size: 3rem;
  font-family: "Noto Sans Japanese", sans-serif;
  font-weight: 900;
  letter-spacing: 0.026em;
  line-height: 1.2;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .subpage-character__name {
    margin-top: 1.25rem;
  }
}

.subpage-character__name-en {
  font-size: 0.75rem;
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin-top: 0.625rem;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .subpage-character__name-en {
    margin-top: 1.25rem;
  }
}

.subpage-character__name-en.name-en-yui {
  color: #807c98;
}

.subpage-character__name-en.name-en-akari {
  color: #ff93e2;
}

.subpage-character__name-en.name-en-rin {
  color: #ff7510;
}

.subpage-character__name-en.name-en-yaeka {
  color: #84429d;
}

.subpage-character__name-en.name-en-miku {
  color: #575def;
}

.subpage-character__name-en.name-en-mayumi {
  color: #ef9090;
}

.subpage-character__name-en.name-en-ruriko {
  color: #5d9ce6;
}

.subpage-character__info-box {
  margin-top: 1.875rem;
}

.subpage-character__info {
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .subpage-character__info {
    font-size: 0.8125rem;
  }
}

.subpage-character__info:nth-child(n+2) {
  margin-top: 0.875rem;
}

.subpage-character__description-items {
  margin-top: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .subpage-character__description-items {
    margin-top: 1.875rem;
  }
}

.subpage-character__description-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.75rem;
  line-height: 1.8333333333;
  letter-spacing: 0.026em;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .subpage-character__description-item {
    font-size: 0.8125rem;
  }
}

.subpage-character__description-item:nth-child(n+2) {
  margin-top: 0.625rem;
}

.subpage-character__description-item dt {
  position: relative;
  width: 27.7%;
  padding-left: 0.75rem;
}

.subpage-character__description-item.description-yui dt::before,
.subpage-character__description-item.description-akari dt::before,
.subpage-character__description-item.description-rin dt::before,
.subpage-character__description-item.description-yaeka dt::before,
.subpage-character__description-item.description-miku dt::before,
.subpage-character__description-item.description-mayumi dt::before,
.subpage-character__description-item.description-ruriko dt::before {
  content: "";
  position: absolute;
  top: 0.2em;
  left: 0;
  width: 0.125rem;
  height: 0.75rem;
}

.subpage-character__description-item.description-yui dt::before {
  background-color: #807c98;
}

.subpage-character__description-item.description-akari dt::before {
  background-color: #ff93e2;
}

.subpage-character__description-item.description-rin dt::before {
  background-color: #ff7510;
}

.subpage-character__description-item.description-yaeka dt::before {
  background-color: #84429d;
}

.subpage-character__description-item.description-miku dt::before {
  background-color: #575def;
}

.subpage-character__description-item.description-mayumi dt::before {
  background-color: #ef9090;
}

.subpage-character__description-item.description-ruriko dt::before {
  background-color: #5d9ce6;
}

.subpage-character__description-item dd {
  width: 72.3%;
}

.subpage-character__description-small {
  font-size: 0.625rem;
}

.subpage-character__cv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.25rem;
  font-weight: 900;
  font-family: "Noto Sans Japanese", sans-serif;
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .subpage-character__cv {
    margin-top: 2.5rem;
  }
}

.subpage-character__cv.cv-yui {
  color: #807c98;
}

.subpage-character__cv.cv-akari {
  color: #ff93e2;
}

.subpage-character__cv.cv-rin {
  color: #ff7510;
}

.subpage-character__cv.cv-yaeka {
  color: #84429d;
}

.subpage-character__cv.cv-miku {
  color: #575def;
}

.subpage-character__cv.cv-mayumi {
  color: #ef9090;
}

.subpage-character__cv.cv-ruriko {
  color: #5d9ce6;
}

.subpage-character__cv span {
  font-size: 0.75rem;
  font-family: "Nunito", sans-serif;
  margin-right: 0.625rem;
}

.subpage-inner.inner {
  padding: 0 1.5rem;
}

.subpage-mv {
  position: relative;
  display: block;
  width: 100%;
}
.subpage-mv__bg {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .subpage-mv__bg {
    width: 88.8888888889vw;
    margin: auto;
  }
}

.subpage-mv__title-wrapper {
  position: absolute;
  top: 50%;
  left: 5.5813953488vw;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .subpage-mv__title-wrapper {
    left: 10.4166666667vw;
  }
}

.subpage-mv__title-en {
  font-size: 2.0625rem;
  color: #fff;
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  color: #fff;
  text-transform: capitalize;
}
@media screen and (min-width: 768px) {
  .subpage-mv__title-en {
    font-size: 3.25rem;
    color: #000000;
  }
}

.subpage-mv__title-ja {
  font-size: 0.625rem;
  font-family: "Noto Sans Japanese", sans-serif;
  font-weight: 700;
  letter-spacing: 0.026em;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .subpage-mv__title-ja {
    font-size: 0.75rem;
    color: #000000;
    margin-top: 0.3125rem;
  }
}

/* 前へ次への矢印カスタマイズ 共通部分------------- */
.swiper-button-prev,
.swiper-button-next {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

/* swiperデフォルト指定を解除 */
.swiper-button-next,
.swiper-button-prev {
  margin-top: 0;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  opacity: 0.6;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  margin: auto;
  width: 100%;
  height: 100%;
}

/* 前への矢印カスタマイズ */
.swiper-button-prev.swiper-button-prev-experience::after {
  background-image: url(../../assets/images/top/experience/slide-prev.png);
}

/* 次への矢印カスタマイズ */
.swiper-button-next.swiper-button-next-experience::after {
  background-image: url(../../assets/images/top/experience/slide-next.png);
}

/* 前へ次への矢印カスタマイズ 誘導バナースライド------------- */
.swiper-button-prev.swiper-button-prev-experience,
.swiper-button-next.swiper-button-next-experience {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 9.7674418605vw;
  height: 9.7674418605vw;
}
@media screen and (min-width: 768px) {
  .swiper-button-prev.swiper-button-prev-experience,
  .swiper-button-next.swiper-button-next-experience {
    width: 2.9166666667vw;
    height: 2.9166666667vw;
  }
}

@media screen and (min-width: 768px) {
  .swiper-button-prev.swiper-button-prev-experience {
    left: 9.7222222222vw;
  }
}

@media screen and (min-width: 768px) {
  .swiper-button-next.swiper-button-next-experience {
    right: 9.7222222222vw;
  }
}

/* 前へ次への矢印カスタマイズ 誘導バナースライド ここまで------------- */
.thumb-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5625rem 0.375rem;
}
@media screen and (min-width: 430px) {
  .thumb-items {
    grid-template-columns: repeat(4, 1fr);
    gap: 0 0.375rem;
  }
}
@media screen and (min-width: 768px) {
  .thumb-items {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
    gap: 0.75rem 0;
  }
}

.character-thumb-items.thumb-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 0.5rem; /* 上下の余白 */
  -webkit-column-gap: 2.09%;
     -moz-column-gap: 2.09%;
          column-gap: 2.09%; /* 左右の余白 */
  max-width: 66rem;
  width: 100%;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .character-thumb-items.thumb-items {
    gap: 0;
  }
}

.subpage-character__bg-thumb-items.character-bg-thumb-items.thumb-items {
  display: block;
}

.thumb-item {
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.thumb-item.character-thumb-item {
  width: 31.9%;
}
@media screen and (min-width: 768px) {
  .thumb-item.character-thumb-item {
    width: 11.5%;
  }
}

.thumb-item.character-thumb-item.character-thumb-item-large {
  width: 48.7%;
}
@media screen and (min-width: 768px) {
  .thumb-item.character-thumb-item.character-thumb-item-large {
    width: 17.6%;
  }
}

@media screen and (min-width: 768px) {
  .thumb-item.character-thumb-item:nth-child(2) {
    margin-left: 1.13%;
  }
}

@media screen and (min-width: 768px) {
  .thumb-item.character-thumb-item:nth-child(3) {
    margin-left: 2.84%;
  }
}

/*前から4番目以降*/
@media screen and (min-width: 768px) {
  .thumb-item.character-thumb-item:nth-child(n+4) {
    margin-left: 0.76%;
  }
}

.thumb-item-active {
  position: relative;
}

.thumb-item-active.movie__thumb-item img {
  border: 1px solid #ef57dd;
}

.thumb-item-active.character-thumb-item img {
  border: 3px solid #ef57dd;
}

.thumb-item-active.character-thumb-item.character-thumb-item-large img {
  border: 4px solid #ef57dd;
}

/* サムネイル選択時の三角 */
.thumb-item-active.movie__thumb-item::after {
  content: "";
  position: absolute;
  bottom: -0.625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 0.25rem solid transparent;
  border-left: 0.25rem solid transparent;
  border-bottom: 0.375rem solid #ef57dd;
  border-top: 0;
}
@media screen and (min-width: 768px) {
  .thumb-item-active.movie__thumb-item::after {
    left: -0.625rem;
    bottom: auto;
    top: 50%;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 0.375rem solid transparent;
    border-bottom: 0.375rem solid transparent;
    border-left: 0.5rem solid #ef57dd;
    border-right: 0;
  }
}

.thumb-item-active.movie__thumb-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: #ef57dd;
  mix-blend-mode: screen;
  border-radius: 0.3125rem;
}

.thumb-item.movie__thumb-item img {
  border-radius: 0.3125rem;
  border: 1px solid #000000;
}

.thumb-item-active.character-thumb-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: #fff;
  mix-blend-mode: screen;
  border-radius: 0.1875rem;
  opacity: 0.4;
}

.thumb-item.character-thumb-item img {
  border-radius: 0.1875rem;
}

@media screen and (min-width: 768px) {
  .worldview {
    padding-top: 11.25rem;
    position: relative;
  }
}
@media (min-width: 1400px) {
  .worldview {
    padding-top: 12.5rem;
  }
}

.worldview__inner {
  width: 100%;
  padding-right: 24px;
  padding-left: 24px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .worldview__inner {
    padding-right: 0;
    padding-left: 0;
  }
}

.worldview::after {
  content: "";
  position: absolute;
  background: url(../../assets/images/top/treatment/world-view-treatment-sp.png) no-repeat center center/cover;
  top: -8%;
  right: 0;
  max-width: 26.875rem;
  width: 100%;
  max-height: 46.6875rem;
  height: 100%;
  z-index: -2;
}
@media screen and (min-width: 768px) {
  .worldview::after {
    background: url(../../assets/images/top/treatment/world-view-treatment-pc.png) no-repeat center center/contain;
    max-width: 100%;
    max-height: 100%;
  }
}

@media screen and (min-width: 768px) {
  .worldview__message {
    position: absolute;
    top: -19%;
    left: 51%;
    transform: translatex(-50%);
    -webkit-transform: translatex(-50%);
    -ms-transform: translatex(-50%);
    max-width: 88rem;
    width: calc(100vw - 30px);
    height: 100%;
    z-index: 1;
  }
}
@media (min-width: 1400px) {
  .worldview__message {
    top: -11.25rem;
  }
}

.worldview__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.375rem;
}
@media screen and (min-width: 768px) {
  .worldview__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    position: relative;
    gap: 7%;
  }
}

.worldview__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media screen and (min-width: 768px) {
  .worldview__body {
    margin-top: 3.125rem;
    width: 17%;
  }
}

.worldview__mainTxt {
  width: calc(100% - 4.5rem);
}
@media screen and (min-width: 768px) {
  .worldview__mainTxt {
    position: absolute;
    top: clamp(23.125rem, 12.216rem + 18.182vw, 28.125rem);
    right: 16%;
    max-width: 51.9375rem;
    width: clamp(35.625rem, 3rem + 54.375vw, 51.938rem);
    height: 100%;
    z-index: 1;
  }
}

.worldview__mainTxt img {
  max-width: 19.5625rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .worldview__mainTxt img {
    max-width: 51.9375rem;
    width: clamp(35.625rem, 3rem + 54.375vw, 51.938rem);
  }
}

.worldview__title {
  width: 4.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}
@media screen and (min-width: 768px) {
  .worldview__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    gap: 10%;
  }
}

.worldview__title-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 4.5rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.875rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .worldview__title-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 6rem;
    gap: 8.4375rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
  }
}

.worldview__title-left::after {
  content: "";
  position: absolute;
  background: url(../../assets/images/top/world-view/world-view-back.png) no-repeat center center/cover;
  top: 0;
  right: 0;
  width: 7.25rem;
  height: 103%;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .worldview__title-left::after {
    background: none;
  }
}

.worldview__title-head img {
  width: 4.5rem;
  height: auto;
}
@media screen and (min-width: 768px) {
  .worldview__title-head img {
    width: 6rem;
  }
}

.worldview__title-bottom {
  width: 100%;
  padding-left: 40%;
}
@media screen and (min-width: 768px) {
  .worldview__title-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-left: 0;
  }
}

.worldview__title-bottom img {
  width: 2.0625rem;
  height: auto;
}

.worldview__title-bar {
  width: calc(94% - 6rem);
}

@media screen and (min-width: 768px) {
  .worldview__title-bar span {
    display: inline-block;
    width: 100%;
    border-bottom: 4px solid #575def;
    height: 2.5rem;
  }
}

.worldview__left {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
@media screen and (min-width: 768px) {
  .worldview__left {
    width: 77%;
    margin-left: calc(50% - 50vw);
    max-width: 93.75rem;
    margin-right: 0;
    padding-left: 1.25rem;
    position: relative;
  }
}

.worldview__video {
  position: relative;
  z-index: -1;
}

.worldview__youtube {
  width: 100%;
  aspect-ratio: 430/242;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .worldview__youtube {
    border-radius: 0.3125rem;
  }
}

.worldview__youtube a {
  pointer-events: none;
}

.worldview__youtube-mask {
  position: absolute;
  z-index: 2;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0.7;
}

#player {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 0.375rem;
}

.worldview__youtube::after {
  content: "";
  position: absolute;
  z-index: -2;
  top: 1.25rem;
  left: -1.25rem;
  width: 100%;
  height: 100%;
  background-color: #edff8b;
  border-radius: 0.375rem;
}

@media screen and (min-width: 768px) {
  .worldview__video::after {
    content: "";
    position: absolute;
    background: url(../../assets/images/top/treatment/world_view-treatment-box.png) no-repeat center center/cover;
    bottom: -312px;
    left: -20px;
    max-width: 18.4375rem;
    width: 100%;
    max-height: 14.625rem;
    height: 100%;
    z-index: 2;
  }
}

/* ---------- 余白用 ---------- */
.article-top__mt10px {
  margin-top: 0.625rem;
}

.article-top__mt20px {
  margin-top: 1.25rem;
}

.article-top__mt30px {
  margin-top: 1.875rem;
}

.article-top__mt40px {
  margin-top: 2.5rem;
}

.article-top__mt50px {
  margin-top: 3.125rem;
}

.article-top__mt60px {
  margin-top: 3.75rem;
}

.article-top__mt80px {
  margin-top: 5rem;
}

.article-top__mt100px {
  margin-top: 6.25rem;
}

.article-top__mt15-25px {
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .article-top__mt15-25px {
    margin-top: 1.5625rem;
  }
}

.article-top__mt35-50px {
  margin-top: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .article-top__mt35-50px {
    margin-top: 3.125rem;
  }
}

/* ---------- フォント用 ---------- */
.font-bold {
  font-weight: 700;
}

.link {
  word-break: break-all;
}

.text-wrap {
  padding-left: 1em;
  text-indent: -1em;
}

/* 下線 spanタグのクラスに「text-underline」を付与 */
.text-underline {
  background-image: -webkit-gradient(linear, left top, right top, from(#ef57dd), to(#ef57dd));
  background-image: linear-gradient(90deg, #ef57dd, #ef57dd); /* 線の色 */
  background-repeat: no-repeat;
  background-position: left bottom; /* 線の起点を左・下に設定 */
  background-size: 100% 0.1875rem; /* 線の横幅を0、縦幅を3pxに */
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
}

/* 罫線 */
.rule-line {
  background-color: #eaedf0;
  height: 1px;
  border: 0 none;
  width: 100%;
}

/* リンク */
.link {
  word-break: break-all;
  color: #ef57dd;
  text-decoration: underline;
}

.top-experience {
  margin-top: 13.9534883721vw;
}
@media screen and (min-width: 768px) {
  .top-experience {
    margin-top: 2.0833333333vw;
  }
}

@media screen and (min-width: 768px) {
  .top-keywords {
    margin-top: 20.8333333333vw;
  }
}
@media screen and (min-width: 1920px) {
  .top-keywords {
    margin-top: 25rem;
  }
}

.top-movie {
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .top-movie {
    margin-top: 7.5rem;
  }
}

.top-subpage {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .top-subpage {
    margin-top: 3.75rem;
  }
}

/* ---------- 改行用 ---------- */
@media screen and (min-width: 430px) {
  .u-mobile-430 {
    display: none;
  }
}

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

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */