@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0; /* マージンは0に */
  padding: 0; /* パディングも常に0に */
  box-sizing: border-box; /* もちろん、より直感的なbox-sizingに設定 */
  word-wrap: break-word;
  overflow-wrap: break-word;
}

:where(input, button, textarea, select) {
  font: inherit; /* フォーム コントロールは親フォントを継承 */
  color: inherit; /* カラーも継承 */
}

:where(textarea) {
  resize: vertical; /* テキストエリアの水平リサイズを無効に */
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer; /* インタラクティブなものにカーソルを合わせる */
}

:where(:disabled) {
  cursor: not-allowed; /* フォームコントロール無効時のカーソルを許可しない */
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed; /* ラベルにもカーソルを許可しない */
}

:where(button) {
  border-style: solid; /* ボタンのボーダーのスタイルを設定しやすくする */
}

:where(a) {
  text-underline-offset: 0.2ex; /* 下線の上にスペースを追加する */
}

:where(ul, ol) {
  list-style: none; /* ビュレットを削除、必要に応じて手動で追加する */
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block; /* 置換された要素をより予測可能にする */
}

:where(img, picture, svg) {
  max-inline-size: 100%; /* images should never overflow past the available space */
  block-size: auto; /* アスペクト比を保持 */
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word; /* 長い単語は改行 */
}

:where(hr) { /* より一貫性のある、スタイリッシュなhr */
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

/* .hp_visuallyHiddenは後のカスケードレイヤーを上書きするために!importantを使用 */
:where(.hp_visuallyHidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.none {
  display: none !important;
  content-visibility: hidden !important;
}
.none-d {
  display: none !important;
  content-visibility: hidden !important;
}
.block {
  display: block !important;
  content-visibility: visible !important;
}
.block-d {
  display: block !important;
  content-visibility: visible !important;
}
/* ==================================
   base
================================== */
html {
  height: 100%;
  -webkit-overflow-scrolling: touch;
  scrollbar-gutter: stable;
}

:where(html) {
  -webkit-text-size-adjust: none; /* iOSのランドスケープでテキストが調整されないようにする */
}

body {
  font-size: 1.6875rem;
  width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
  background-color: #09112f;
  color: #08102d;
  font-family: "Noto Serif JP", serif;
  word-wrap: break-word;
  overflow-wrap: break-word;
  position: relative;
  animation: fadeInAnim 0.3s ease-in forwards;
}
body::before, body::after {
  content: "";
  display: block;
  width: 100%;
}
body::before {
  height: 100%;
  background: url(../img/common/bg_sp.jpg) center top no-repeat;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
}
body::after {
  width: 100%;
  height: 151.0666666667vw;
  background: url(../img/common/footer_bg_sp.png) center bottom no-repeat;
  background-size: 100% auto;
  position: absolute;
  bottom: 0;
  left: 0;
}

:where(body) {
  -webkit-font-smoothing: antialiased; /* テキストのレンダリングを改善 */
}

main {
  position: relative;
}

:where(img) {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

em {
  font-style: normal;
}

button,
input[type=button],
input[type=submit],
input[type=text],
input[type=search],
input[type=email] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}

button,
input[type=button],
input[type=submit] {
  border: none;
}

select, textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* scrollbar
================================== */

::-webkit-scrollbar-track {
  background-color: #eee;
}

::-webkit-scrollbar-thumb {
  background-color: #af0001;
}

@-moz-document url-prefix() {
  html {
    scrollbar-width: thin;
    scrollbar-color: #af0001 #eee;
  }
}
/* ======================================
  ly_footer
====================================== */
.ly_footer {
  position: relative;
  z-index: 2;
}

.ly_footer_inner {
  height: 98.5333333333vw;
  margin-top: 8vw;
  padding-top: 66.1333333333vw;
  background: url(../img/common/footer_img_sp.png) center bottom no-repeat;
  background-size: 100vw auto;
}

/* ======================================
  ly_header
====================================== */
.ly_header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

/* =====================================
  ly_main
===================================== */
.ly_main {
  margin-bottom: 26.6666666667vw;
  padding: 26.6666666667vw 0 0;
  background: url(../img/common/pageheader_bg_sp.webp) center top no-repeat;
  background-size: 100% auto;
  position: relative;
  z-index: 1;
  overflow: clip;
}
.ly_main::before, .ly_main::after {
  content: "";
  display: block;
}
.ly_main::before {
  width: 29.0666666667vw;
  height: 25.7333333333vw;
  background: url(../img/common/deco_glass_r.png);
  background-size: cover;
  position: absolute;
  top: 34.6666666667vw;
  right: -4vw;
  z-index: 1;
  animation: fluffyAnim 3s ease-in-out infinite alternate;
}
.ly_main::after {
  width: 29.4666666667vw;
  height: 18.5333333333vw;
  background: url(../img/common/deco_glass_l.png);
  background-size: cover;
  position: absolute;
  top: 116.8vw;
  left: -7.7333333333vw;
  animation: fluffyAnim 3.2s ease-in-out 0.2s infinite alternate;
}
.ly_main.__chara::after {
  z-index: 1;
}

.ly_main_header {
  margin: 0 0vw 5.3333333333vw;
  position: relative;
  text-align: left;
}
.ly_main_cont.__newsDet {
  margin: 0 2.6666666667vw;
}

/* =====================================
  back to top
===================================== */
.bl_backToTop {
  width: 7.4666666667vw;
  height: 37.3333333333vw;
}

.bl_backToTop_link {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/common/btt.png) left top no-repeat;
  background-size: 100% auto;
  text-decoration: none;
}

/* ====================================
  movie block
==================================== */
.bl_movie {
  aspect-ratio: 16/9;
  position: relative;
  z-index: 1;
}

.bl_movie_video {
  width: 100%;
  min-height: 100%;
  aspect-ratio: 16/9;
  opacity: 0;
  position: absolute;
}

/* ====================================
  comment
==================================== */
.bl_comment {
  margin: 0 8vw;
  position: relative;
  z-index: 1;
  text-align: left;
}

.bl_comment_thumb {
  width: 69.6vw;
  height: 69.6vw;
  margin: 0 auto;
}

.bl_comment_header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 0 6vw;
}

.bl_comment_label {
  order: 1;
  font-size: 1.75rem;
  display: block;
  margin-bottom: 0.6666666667vw;
  color: #c60000;
  font-weight: bold;
  position: relative;
  z-index: 1;
}

.bl_comment_name {
  font-size: 3.25rem;
  order: 2;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}
.bl_comment_name span {
  font-size: 2rem;
}

.bl_comment_txt {
  font-size: 1.625rem;
  color: #fff;
  font-weight: 500;
  line-height: 1.7;
}
.bl_comment_txt:not(:last-child) {
  margin-bottom: 1.5em;
}

/* ======================================
  deco
===================================== */
/* cloud
================================== */
.bl_decoCloudH {
  width: 100%;
  height: 156.1333333333vw;
  background: url(../img/common/dec_cloud_1.png) left top repeat-x;
  background-size: 265.3333333333vw auto;
  position: absolute;
  top: -58.1333333333vw;
  left: 0;
  animation: loopBg_cH 200s linear infinite;
}

@keyframes loopBg_cH {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 265.3333333333vw 0;
  }
}
.bl_decoCloudF {
  width: 100%;
  height: 156.8vw;
  background: url(../img/common/footer_cloud.png) left top repeat-x;
  background-size: 213.3333333333vw auto;
  position: absolute;
  bottom: 41.7333333333vw;
  left: 0;
  animation: loopBg_cF 200s linear infinite;
}

@keyframes loopBg_cF {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 213.3333333333vw 0;
  }
}
/* ======================================
  footer
===================================== */
/* share
================================== */
.bl_footerShare {
  margin-bottom: 6vw;
}

.bl_footerShare_ttl {
  width: 14.4vw;
  margin: 0 auto 2.6666666667vw;
}

.bl_footerShare_list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9.3333333333vw;
}

.bl_footerShare_link {
  display: block;
}
.bl_footerShare_link.__x {
  width: 6vw;
}
.bl_footerShare_link.__fb {
  width: 3.6vw;
}
.bl_footerShare_link.__line {
  width: 6.6666666667vw;
}
.bl_footerShare_link span {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip-path: inset(50%);
}

/* copyright
================================== */
.bl_footerCopyright {
  text-align: center;
}
.bl_footerCopyright small {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: 1.3125rem;
  color: #08102d;
  line-height: 1;
  font-weight: bold;
}

/* =====================================
  bl_gnav
===================================== */
.bl_gnav {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  pointer-events: auto;
}

/* button
================================== */
.bl_gnav_btn {
  display: grid;
  place-content: center;
  width: 32.6666666667vw;
  height: 32.4vw;
  padding: 0;
  background: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  transition: 0.2s;
  cursor: pointer;
  position: absolute;
  right: -12vw;
  top: -12vw;
  z-index: 30;
  outline: none;
}
.bl_gnav_btn[aria-expanded=true] {
  transition: 0.2s;
}
.bl_gnav_btn[aria-expanded=true] .bl_gnav_img {
  background: url(../img/common/close_btn.png) left bottom no-repeat;
  background-size: 11.6vw auto;
  transition: 0.2s;
}
.bl_gnav_btn::before {
  content: "";
  display: block;
  width: 32.6666666667vw;
  height: 32.4vw;
  background: url(../img/common/menu_frame.png) left bottom no-repeat;
  background-size: 32.6666666667vw auto;
  animation: spin 32s linear infinite;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}

.bl_gnav_img {
  color: #fff;
  display: block;
  width: 10.6666666667vw;
  height: 4.6666666667vw;
  background: url(../img/common/open_btn.png) center center no-repeat;
  background-size: 10.6666666667vw 4.6666666667vw;
  position: absolute;
  bottom: 10.6666666667vw;
  left: 7.3333333333vw;
  z-index: 1;
}

/* body
================================== */
.bl_gnav_body {
  width: 100%;
  height: 100svh;
  background: rgba(8, 16, 45, 0.95);
  overflow-y: auto;
  position: fixed;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0s linear 0.2s;
}

.is_navOpen {
  position: fixed;
  width: 100%;
}
.is_navOpen .bl_gnav_body {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.2s ease;
}

/* inner
================================== */
.bl_gnav_inner {
  width: 100%;
  height: 100%;
  margin: 0;
  background: url(../img/common/nav_bg_sp.webp) center 6.9333333333vw no-repeat;
  background-size: 97.8666666667vw auto;
  position: relative;
  top: 0;
  z-index: 1;
  overflow: hidden;
}

.bl_gnav_main {
  height: 158vw;
}

/* gnav list
================================== */
.bl_gnav_list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5.6vw 0;
  position: relative;
}

.bl_gnav_link {
  font-size: 2.8125rem;
  font-family: "Kalnia", serif;
  font-optical-sizing: auto;
  font-variation-settings: "wdth" 100;
  color: #08102d;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
  transition: 0.2s;
  position: relative;
  z-index: 1;
}
.bl_gnav_link[aria-current=page], .bl_gnav_link[aria-current=location], .bl_gnav_link.is_current {
  color: #af0001;
}

/* sns
================================== */
.bl_gnav_sns {
  text-align: center;
}

.bl_gnav_x {
  display: grid;
  place-content: center;
  width: 45.3333333333vw;
  height: 13.3333333333vw;
  margin: 0 auto;
  background: #840001;
  border-radius: 10em;
  color: #fff;
  text-decoration: none;
}
.bl_gnav_x span {
  font-family: "Kalnia", serif;
  font-optical-sizing: auto;
  font-variation-settings: "wdth" 100;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42.6666666667vw;
  height: 10.6666666667vw;
  border: 0.1333333333vw solid #c80000;
  border-radius: 10em;
}
.bl_gnav_x img {
  width: 20.1333333333vw;
}

/* ======================================
  header
===================================== */
.bl_headerLogo {
  width: 29.2vw;
  margin: 2.6666666667vw auto 0vw 2.4vw;
  position: relative;
  z-index: 1;
  pointer-events: auto;
}

/* ===================================
  loader
=================================== */
.bl_loaderCover {
  width: 100%;
  height: 100svh;
  background: #cff4ff url(../img/common/bg_sp.jpg) right top no-repeat;
  background-size: cover;
  position: fixed;
  top: 0;
  z-index: 101;
}

.bl_loader {
  display: grid;
  place-content: center;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  z-index: 11;
}

.bl_loader_logo {
  width: 78.6666666667vw;
  position: relative;
  z-index: 1;
}

.bl_loader_cloud01 {
  width: 100%;
  height: 156.1333333333vw;
  background: url(../img/top/dec_cloud_1.png) left top repeat-x;
  background-size: 265.3333333333vw auto;
  position: absolute;
  top: -47.0666666667vw;
  left: 0;
  animation: loopBg_c1 50s linear infinite reverse;
}

@keyframes loopBg_c1 {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 265.3333333333vw 0;
  }
}
.bl_loader_cloud02 {
  width: 100%;
  height: 107.2vw;
  background: url(../img/top/dec_cloud_2.png) left top repeat-x;
  background-size: 245.6vw 107.2vw;
  position: absolute;
  bottom: -41.2vw;
  left: 0;
  animation: loopBg_c2 50s linear infinite;
}

@keyframes loopBg_c2 {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 245.6vw 0;
  }
}
/* loader
================================== */
.bl_loaderCover {
  transition: opacity 0.3s ease;
}
.bl_loaderCover.is_hide {
  opacity: 0;
  pointer-events: none;
}
.bl_loaderCover.is_remove {
  display: none;
}

.bl_loader {
  transition: opacity 0.3s ease-out;
}
.bl_loader.is_hide {
  opacity: 0;
  pointer-events: none;
}

/* ====================================
  modal
==================================== */
dialog {
  border: none;
  padding: 0;
  background: transparent;
  position: relative;
  overflow-x: clip;
}

/* content wrap (内側のコンテンツ)
================================== */
.bl_modal_inner {
  width: 100%;
  padding: 20vw 2.6666666667vw;
  text-align: center;
  margin: auto;
}

/* ====================================
   modal (dialog)
==================================== */
.bl_modal {
  border: none;
  padding: 0;
  background: transparent;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  overflow-y: auto;
  position: relative;
}
.bl_modal::before {
  content: "";
  display: block;
  width: 100%;
  height: 100dvh;
  background: url(../img/common/bg_sp.jpg) right top no-repeat;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
}
.bl_modal[open] {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
  animation: fadeInAnim 0.2s ease-out forwards;
}
.bl_modal[open]::before {
  animation: fadeInAnim 0.2s ease-out forwards;
}
.bl_modal[open] .bl_modal_inner {
  animation: fadeInAnim 0.2s ease-out forwards;
}
.bl_modal[open] .bl_movie_video {
  animation: fadeInAnim 0.3s ease-out 0.3s forwards;
}
.bl_modal.is_closing {
  animation: fadeOutAnim 0.3s ease forwards;
}
.bl_modal.is_closing::before {
  animation: fadeOutAnim 0.3s ease forwards;
}
.bl_modal.is_closing .bl_modal_inner {
  animation: fadeOutAnim 0.3s ease forwards;
}
.bl_modal.is_closing::backdrop {
  animation: fadeOutAnim 0.3s ease forwards;
}
.bl_modal::backdrop {
  opacity: 0;
  animation: fadeInAnim 0.2s ease-out forwards;
}

/* close button
================================== */
.bl_modal_close {
  display: grid;
  place-content: center;
  width: 32.6666666667vw;
  height: 32.4vw;
  padding: 0;
  background: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  transition: 0.2s;
  cursor: pointer;
  position: absolute;
  right: -12vw;
  top: -12vw;
  z-index: 30;
  outline: none;
}
.bl_modal_close::before {
  content: "";
  display: block;
  width: 32.6666666667vw;
  height: 32.4vw;
  background: url(../img/common/menu_frame2.png) left bottom no-repeat;
  background-size: 32.6666666667vw auto;
  animation: spin 32s linear infinite;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
.bl_modal_close::after {
  content: "";
  display: block;
  width: 16vw;
  height: 16vw;
  border-radius: 100%;
  background: #08102d;
  filter: blur(4vw);
}

.bl_modal_closeImg {
  color: #fff;
  display: block;
  width: 10.6666666667vw;
  height: 4.6666666667vw;
  background: url(../img/common/close_btn.png) center center no-repeat;
  background-size: 11.6vw auto;
  position: absolute;
  bottom: 10.6666666667vw;
  left: 7.3333333333vw;
  z-index: 1;
}

body:has(dialog[open]) {
  overflow: hidden;
  scrollbar-gutter: stable;
}

body.is_modalOpen {
  overflow: hidden;
}

/* ======================================
  pager
===================================== */
.bl_pagerList {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 2.6666666667vw;
  margin: 10.6666666667vw auto 0;
  position: relative;
}

/* prev / next
================================== */
.bl_pager_prev,
.page-numbers.prev,
.bl_pager_next,
.page-numbers.next {
  font-family: "Kalnia", serif;
  font-optical-sizing: auto;
  font-variation-settings: "wdth" 100;
  font-size: 1.875rem;
  display: grid;
  place-content: center;
  height: 5.2vw;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.072vw;
  position: absolute;
}
.bl_pager_prev::before,
.page-numbers.prev::before,
.bl_pager_next::before,
.page-numbers.next::before {
  content: "";
  display: block;
  width: 12vw;
  height: 0.2666666667vw;
  background: #af0001;
  position: absolute;
  inset: 0;
  margin: auto;
  transition: 0.2s;
}

/* prev
================================== */
.bl_pager_prev,
.page-numbers.prev {
  padding-left: 18.4vw;
  background: url(../img/common/btn_deco_left.svg) left center no-repeat;
  background-size: 4.6666666667vw 5.2vw;
  position: absolute;
  left: 0;
}
.bl_pager_prev::before,
.page-numbers.prev::before {
  right: auto;
  left: 4.5333333333vw;
}

/* next
================================== */
.bl_pager_next,
.page-numbers.next {
  padding-right: 18.4vw;
  background: url(../img/common/btn_deco_right.svg) right center no-repeat;
  background-size: 4.6666666667vw 5.2vw;
  position: absolute;
  right: 0;
}
.bl_pager_next::before,
.page-numbers.next::before {
  left: auto;
  right: 4.5333333333vw;
}

/* number
================================== */
.page-numbers {
  font-family: "Kalnia", serif;
  font-optical-sizing: auto;
  font-variation-settings: "wdth" 100;
  font-size: 1.875rem;
  font-weight: 500;
  text-decoration: none;
  color: #fff;
  letter-spacing: 0;
  line-height: 1;
  position: relative;
}
.page-numbers:not(.prev, .next, .dots) {
  display: flex;
  align-items: center;
  position: relative;
}
.page-numbers:not(.prev, .next, .dots)::before, .page-numbers:not(.prev, .next, .dots)::after {
  content: "";
  display: block;
  width: 1.6vw;
  height: 3.2vw;
  position: relative;
  opacity: 0;
  transition: 0.2s;
}
.page-numbers:not(.prev, .next, .dots)::before {
  background: url(../img/common/on_deco_l.svg) left center no-repeat;
  background-size: 100% auto;
  right: 0.4vw;
}
.page-numbers:not(.prev, .next, .dots)::after {
  background: url(../img/common/on_deco_r.svg) left center no-repeat;
  background-size: 100% auto;
  left: 0.4vw;
}
.page-numbers:not(.prev, .next, .dots).current, .page-numbers:not(.prev, .next, .dots):hover {
  color: #d80001;
}
.page-numbers:not(.prev, .next, .dots).current::before, .page-numbers:not(.prev, .next, .dots).current::after, .page-numbers:not(.prev, .next, .dots):hover::before, .page-numbers:not(.prev, .next, .dots):hover::after {
  opacity: 1;
}
.page-numbers.dots {
  font-size: 1.6875rem;
  align-items: flex-end;
  letter-spacing: 0;
}

/* detail page
================================== */
.bl_pager {
  margin: 20vw 0vw 24vw;
  position: relative;
}

.bl_pager_detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  line-height: 1;
}

.bl_pager_prev,
.bl_pager_next {
  z-index: 1;
}

/* back
================================== */
.bl_pager_back {
  font-family: "Kalnia", serif;
  font-optical-sizing: auto;
  font-variation-settings: "wdth" 100;
  display: block;
  text-align: center;
}

.bl_pager_backLink {
  font-family: "Kalnia", serif;
  font-optical-sizing: auto;
  font-variation-settings: "wdth" 100;
  font-size: 1.875rem;
  display: grid;
  align-items: center;
  justify-content: flex-start;
  width: 56vw;
  height: 10.9333333333vw;
  margin: auto;
  padding: 1.3333333333vw 10.2666666667vw;
  background: url(../img/news/btn_bg.png) center center no-repeat;
  background-size: 100% auto;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.072vw;
  position: relative;
}

/* =====================================
  post
===================================== */
.bl_post {
  margin-top: 14.6666666667vw;
  padding: 0 5.3333333333vw 4.5333333333vw;
  background: #f4f4f4;
  position: relative;
}
.bl_post::before, .bl_post::after {
  content: "";
  display: block;
  width: 100%;
  height: 9.3333333333vw;
  position: absolute;
  left: 0;
}
.bl_post::before {
  background: url(../img/news/frame_top_sp.png) center top no-repeat;
  background-size: 100% auto;
  top: -9.3333333333vw;
}
.bl_post::after {
  background: url(../img/news/frame_btm_sp.png) center top no-repeat;
  background-size: 100% auto;
  bottom: -9.3333333333vw;
}

.bl_post_header {
  display: flex;
  flex-direction: column;
  margin-bottom: 3.3333333333vw;
  position: relative;
}

.bl_post_date {
  font-family: "Kalnia", serif;
  font-optical-sizing: auto;
  font-variation-settings: "wdth" 100;
  font-size: 2.125rem;
  order: 1;
  display: block;
  margin-bottom: 4vw;
  padding-bottom: 6.4vw;
  background: url(../img/news/ttl_line_sp.png) center bottom no-repeat;
  background-size: 100% auto;
  color: #af0001;
  line-height: 1;
  font-weight: 600;
  text-align: center;
}

.bl_post_ttl {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: 2.375rem;
  order: 2;
  width: 100%;
  font-weight: bold;
  line-height: 1.7;
}

.bl_post_main {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: 1.625rem;
  line-height: 1.7;
  font-weight: 500;
  color: #08102d;
}
.bl_post_main p {
  margin-bottom: 4vw;
  color: #08102d;
}
.bl_post_main b, .bl_post_main strong {
  font-weight: 500;
}
.bl_post_main a {
  display: inline-block;
  color: #af0001;
  transition: 0.6s;
}
.bl_post_main figure {
  margin: 5.3333333333vw 0;
}
.bl_post_main figure:first-child {
  margin-top: 0;
}
.bl_post_main figure img {
  max-width: 100%;
  margin: 0 0 8.6666666667vw;
}
.bl_post_main figure img:last-child {
  margin-bottom: 0;
}

/* ====================================
  posts
==================================== */
.bl_posts {
  display: grid;
  gap: 3.3333333333vw 0;
  width: 100%;
}

.bl_posts_link {
  display: grid;
  align-items: center;
  grid-template-columns: 21.3333333333vw minmax(0, 1fr);
  width: 94.6666666667vw;
  height: 18.6666666667vw;
  padding: 2vw 6.6666666667vw 2vw 6vw;
  background: url(../img/news/posts_bg_sp.png) center center no-repeat;
  background-size: 100% auto;
  text-decoration: none;
  position: relative;
}

.bl_posts_date {
  font-family: "Kalnia", serif;
  font-optical-sizing: auto;
  font-variation-settings: "wdth" 100;
  font-size: 2.0625rem;
  display: flex;
  align-items: center;
  gap: 0 1.3333333333vw;
  color: #af0001;
  font-weight: 600;
  line-height: 1.1;
}
.bl_posts_date::after {
  content: "";
  display: inline-block;
  width: 5.3333333333vw;
  height: 2.4vw;
  background: url(../img/news/posts_deco.svg) no-repeat;
  background-size: 100% auto;
}

.bl_posts_main {
  min-width: 0;
}

.bl_posts_txt {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 500;
  color: #af0001;
  position: relative;
  z-index: 1;
}

.bl_posts_txt-none {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: 1.5rem;
  color: #fff;
  font-weight: 500;
  text-align: center;
}

/* ======================================
  button
===================================== */
.el_btn {
  font-size: 2.8125rem;
  display: inline-grid;
  place-content: center;
  width: 42.6666666667vw;
  height: 12vw;
  padding-left: 1.3333333333vw;
  background: rgb(0, 0, 0);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  color: #fff;
  letter-spacing: 1.2vw;
  box-shadow: inset 0 0 0 1.3333333333vw #fff, 0 0 0 0.1333333333vw #000;
  position: relative;
}
.el_btn::before {
  content: "";
  display: inline-block;
  height: 3.0666666667vw;
  aspect-ratio: 10/15;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: #fff;
  opacity: 0;
  position: absolute;
  inset: 0;
  margin: auto;
  left: 6.6666666667vw;
  right: auto;
  transition: 0.2s;
}
.el_btn.is_active {
  box-shadow: none;
  background: rgba(0, 0, 0, 0.6);
  transition: 0.2s;
}
.el_btn.is_active::before {
  opacity: 1;
  transition: 0.2s;
}

/* open button
================================== */
.el_commentBtn {
  display: grid;
  place-content: center;
  padding: 0;
  width: 9.7333333333vw;
  height: 3.3333333333vw;
  background: #c60000 url(../img/common/btn_cmt.svg) center center no-repeat;
  background-size: 3.6vw 0.6666666667vw;
  border-radius: 10em;
  line-height: 1;
}

/* ======================================
  heading
===================================== */
.el_lv1Heading {
  margin-inline: auto;
  padding-bottom: 8.4vw;
  background: url(../img/common/ttl_line_sp.png) center bottom no-repeat;
  background-size: 50.2666666667vw 8.4vw;
}
.el_lv1Heading img {
  margin: 0 auto;
}
.el_lv1Heading.__news img {
  width: 32.4vw;
}
.el_lv1Heading.__sc img {
  width: 74.2666666667vw;
}
.el_lv1Heading.__movie img {
  width: 37.0666666667vw;
}
.el_lv1Heading.__books img {
  width: 39.2vw;
}
.el_lv1Heading.__chara img {
  width: 71.7333333333vw;
}

.el_lv2Heading {
  font-family: "Kalnia", serif;
  font-optical-sizing: auto;
  font-variation-settings: "wdth" 100;
  font-size: 2.375rem;
  min-height: 12.8vw;
  padding: 1.6vw 0 0 6.8vw;
  background: url(../img/common/ttl_deco_moon.svg) left center no-repeat;
  color: #fff;
  background-size: 12.8vw 12.8vw;
  font-weight: normal;
  letter-spacing: 0.1em;
}

/* ======================================
  img
===================================== */
.el_fullImg {
  width: 100%;
  height: auto;
}

/* =====================================
  books / .bks_
===================================== */
.bks_sect {
  margin: 0 2.6666666667vw;
  padding-bottom: 14.6666666667vw;
  background: url(../img/books/line_sp.png) center bottom no-repeat;
  background-size: 100% auto;
  color: #fff;
  position: relative;
}
.bks_sect:not(:last-of-type) {
  margin-bottom: 21.3333333333vw;
}

.bks_sect_inner {
  margin: 0 2.6666666667vw;
}

.bks_sect_header {
  margin-bottom: 6.6666666667vw;
  position: relative;
}

.bks_sect_credit {
  font-size: 1.5rem;
  margin-bottom: 4vw;
  font-weight: 500;
}

.bks_sect_info {
  font-size: 2.5rem;
  color: #c60000;
  font-weight: bold;
  line-height: 1.5;
}

.bks_sect_info_sub {
  font-weight: 500;
}

.bks_bnr {
  width: 64.8vw;
  margin: 0 auto;
  margin-top: 8vw;
}
.bks_bnr a {
  display: inline-block;
  border: 0.2666666667vw solid #818181;
}

.bks_sect_fig a {
  display: block;
  background: #000;
  overflow: hidden;
}
.bks_sect_fig img {
  transition: 0.2s;
}

/* =====================================
  chara / .chara_
===================================== */
.chara_slider {
  position: relative;
}

/* slider thumb
================================== */
.chara_thumb {
  position: relative;
  z-index: 2;
}

.chara_thumb_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2vw;
}

.chara_thumb_item {
  width: 16vw;
  height: 16vw;
  position: relative;
  cursor: pointer;
}
.chara_thumb_item.swiper-slide-thumb-active .js_hoverImg .is_default {
  opacity: 0;
}
.chara_thumb_item.swiper-slide-thumb-active .js_hoverImg .is_hover {
  opacity: 1;
}

.chara_thumb_imgWrap {
  width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
}

/* chara slider
================================== */
.chara_slider_list {
  background: url(../img/chara/deco_flower_sp.png) left 70.6666666667vw no-repeat;
  background-size: 93.6vw auto;
}

.chara_slider_item .chara_stand,
.chara_slider_item .chara_prof {
  opacity: 0;
  transform: translate(1em, 0);
}
.chara_slider_item.swiper-slide-active .chara_stand {
  opacity: 1;
  transform: translate(0, 0);
  transition: 0.5s ease 0.2s;
}
.chara_slider_item.swiper-slide-active .chara_prof {
  opacity: 1;
  transform: translate(0, 0);
  transition: 0.5s ease 0.4s;
}

/* sect
================================== */
.chara_sect {
  position: relative;
}

.chara_sect_inner {
  display: grid;
}

/* prof
================================== */
.chara_prof {
  order: 2;
}

.chara_name {
  font-size: 4.0625rem;
  margin-bottom: 6.6666666667vw;
  color: #fff;
  font-weight: 600;
  line-height: 1.2;
}

.chara_cv {
  display: flex;
  align-items: center;
  min-height: 9.3333333333vw;
  margin-bottom: 6.9333333333vw;
  padding-left: 7.3333333333vw;
  gap: 0 2vw;
  background: url(../img/common/on_deco_l.svg) left center no-repeat;
}

.chara_cv_name {
  font-size: 2.1875rem;
  color: #c60000;
  font-weight: bold;
  line-height: 1;
}

.chara_txt {
  font-size: 1.625rem;
  margin-bottom: 8.6666666667vw;
  color: #fff;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

.chara_nameEn {
  position: absolute;
  left: 0;
}

.chara_face {
  width: 94.1333333333vw;
  margin: 0 auto;
}

/* visual
================================== */
.chara_visual {
  position: relative;
}

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

/* nav
================================== */
.chara_nav {
  display: flex;
  justify-content: space-between;
  margin: 2.6666666667vw 2.6666666667vw 0;
}

.chara_prev,
.chara_next {
  font-family: "Kalnia", serif;
  font-optical-sizing: auto;
  font-variation-settings: "wdth" 100;
  font-size: 1.875rem;
  display: grid;
  place-content: center;
  height: 5.2vw;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.072vw;
}
.chara_prev::before,
.chara_next::before {
  content: "";
  display: block;
  width: 12vw;
  height: 0.2666666667vw;
  background: #af0001;
  position: absolute;
  inset: 0;
  margin: auto;
  transition: 0.2s;
}

.chara_prev {
  padding-left: 18.4vw;
  background: url(../img/common/btn_deco_left.svg) left center no-repeat;
  background-size: 4.6666666667vw 5.2vw;
  position: relative;
}
.chara_prev::before {
  right: auto;
  left: 4.5333333333vw;
}

.chara_next {
  padding-right: 18.4vw;
  background: url(../img/common/btn_deco_right.svg) right center no-repeat;
  background-size: 4.6666666667vw 5.2vw;
  position: relative;
}
.chara_next::before {
  left: auto;
  right: 4.5333333333vw;
}

/* =====================================
  movie / .mv_
===================================== */
.mv_thumbs {
  display: grid;
  gap: 12vw 0;
}

.mv_thumb {
  display: grid;
}

.mv_thumb_caption {
  font-size: 1.75rem;
  order: 2;
  margin-top: 2.4vw;
  color: #af0001;
  font-weight: 600;
  line-height: 1.6;
}

.mv_btn {
  order: 1;
  width: 100%;
  background: #000;
  border: 0.2666666667vw solid #9e0000;
  position: relative;
}
.mv_btn::before {
  content: "";
  display: block;
  width: 100%;
  height: 0.5333333333vw;
  background: #9e0000;
  position: absolute;
  bottom: -1.6vw;
  left: 0;
  z-index: 1;
}
.mv_btn::after {
  content: "";
  display: block;
  width: 87.4666666667vw;
  height: 48.5333333333vw;
  background: url(../img/movie/movie_frame.png) center center no-repeat;
  background-size: 100% auto;
  position: absolute;
  inset: 0;
  margin: auto;
  z-index: 2;
  pointer-events: none;
}

.mv_btn_img {
  opacity: 0.8;
  transition: 0.2s;
}

.mv_btn_bg {
  display: block;
  width: 26.5333333333vw;
  height: 26.5333333333vw;
  background: #da0001;
  border-radius: 100%;
  mix-blend-mode: darken;
  position: absolute;
  inset: 0;
  margin: auto;
  z-index: 1;
}

.mv_btn_icon {
  display: block;
  width: 23.3333333333vw;
  height: 20.2666666667vw;
  position: absolute;
  inset: 0;
  margin: auto;
  z-index: 1;
}

/* =====================================
  staffcast / .sc_
===================================== */
.sc_sect {
  margin: 0 2.6666666667vw;
  padding-bottom: 14.6666666667vw;
  background: url(../img/staffcast/line_sp.png) center bottom no-repeat;
  background-size: 100% auto;
  position: relative;
}
.sc_sect:not(:last-of-type) {
  margin-bottom: 14.6666666667vw;
}
.sc_sect.__staff::after {
  content: "";
  display: block;
  width: 29.4666666667vw;
  height: 18.5333333333vw;
  background: url(../img/common/deco_glass_l.png);
  background-size: cover;
  position: absolute;
  bottom: -17.3333333333vw;
  left: -7.7333333333vw;
  animation: fluffyAnim 3.2s ease-in-out 0.2s infinite alternate;
}

.sc_sect_header {
  margin-bottom: 6.6666666667vw;
}

/* credit
================================== */
.sc_credit {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5.3333333333vw 5.3333333333vw;
  margin: 0 2.6666666667vw;
}

.sc_credit_item.__full {
  grid-column: span 2;
}

.sc_credit_role {
  font-size: 1.625rem;
  margin-bottom: 0.8vw;
  color: #c60000;
  font-weight: 600;
}

.sc_credit_body {
  color: #fff;
}

.sc_credit_wrap {
  display: flex;
  align-items: center;
  gap: 0 2vw;
}
.sc_credit_wrap .el_commentBtn {
  margin-top: 0.6666666667vw;
}

.sc_credit_name {
  font-size: 2.5rem;
  font-weight: 600;
}

.sc_credit_info {
  font-size: 1.4375rem;
  margin-top: 1.0666666667vw;
  font-weight: 500;
  line-height: 1.4;
}

/* =====================================
  top / .tp_
===================================== */
/* deco
================================== */
.tp_word {
  width: 100%;
  height: 16vw;
  background: url(../img/top/dec_word.png) left top repeat-x;
  background-size: 1503.3333333333vw auto;
  position: absolute;
  top: 129.7333333333vw;
  left: 0;
  animation: loopBg_w 200s linear infinite;
}

@keyframes loopBg_w {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -1500.6666666667vw 0;
  }
}
.tp_flower01 {
  width: 100%;
  height: 180.4vw;
  background: url(../img/top/deco_flower01_sp.png) left top no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: 118.6666666667vw;
  left: 0;
}

.tp_flower02 {
  width: 50.5333333333vw;
  height: 83.3333333333vw;
  background: url(../img/top/deco_flower02_sp.png) left top no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: 350.6666666667vw;
  right: 0;
}

.tp_cloud01 {
  width: 100%;
  height: 156.1333333333vw;
  background: url(../img/top/dec_cloud_1.png) left top repeat-x;
  background-size: 265.3333333333vw auto;
  position: absolute;
  top: 155.6vw;
  left: 0;
  animation: loopBg_c1 200s linear infinite;
}

@keyframes loopBg_c1 {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 265.3333333333vw 0;
  }
}
.tp_cloud02 {
  width: 100%;
  height: 107.2vw;
  background: url(../img/top/dec_cloud_2.png) left top repeat-x;
  background-size: 245.6vw 107.2vw;
  position: absolute;
  top: 99.7333333333vw;
  left: 0;
  animation: loopBg_c2 200s linear infinite;
}

@keyframes loopBg_c2 {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 245.6vw 0;
  }
}
.tp_cloud03 {
  width: 100%;
  height: 116.8vw;
  background: url(../img/top/dec_cloud_news.png) left top repeat-x;
  background-size: 159.0666666667vw auto;
  position: absolute;
  top: 314vw;
  left: 0;
  animation: loopBg_c2 200s linear infinite;
}

@keyframes loopBg_c3 {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 159.0666666667vw 0;
  }
}
/* hero
================================== */
.tp_hero {
  display: grid;
  position: relative;
  z-index: 1;
}

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

.tp_hero_logo {
  width: 88vw;
  margin: 0 auto 2vw;
}

.tp_hero_onair {
  width: 76.2666666667vw;
  margin: 0 auto 9.3333333333vw;
}

.tp_hero_kv {
  position: relative;
}

.tp_hero_imgWrap {
  box-shadow: 0 0.6666666667vw 7.2vw 0.6666666667vw rgba(0, 0, 0, 0.75);
}

.tp_hero_catch {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 87.4666666667vw;
  height: 103.6vw;
  position: absolute;
  inset: 0;
  margin: 16.6666666667vw auto 0;
}

.tp_hero_catch01 {
  width: 9.6vw;
}

.tp_hero_catch02 {
  width: 9.3333333333vw;
}

/* news
================================== */
.tp_news {
  width: 100vw;
  height: 145.8666666667vw;
  background: url(../img/top/news_bg_sp.png) center top no-repeat;
  background-size: 100% auto;
  position: relative;
  z-index: 1;
}
.tp_news::before {
  content: "";
  display: block;
  width: 43.2vw;
  height: 39.3333333333vw;
  background: url(../img/top/hero_glass_l.png) center center no-repeat;
  background-size: 100% auto;
  position: absolute;
  bottom: -11.0666666667vw;
  left: -8.8vw;
  animation: fluffyAnim 3s ease-in-out infinite alternate;
}

.tp_news_inner {
  margin: 0 12vw;
  padding: 21.3333333333vw 0 0;
}

.tp_news_header {
  margin-bottom: 6.6666666667vw;
}

.tp_news_ttl {
  width: 32.4vw;
}

.tp_news_btn {
  font-family: "Kalnia", serif;
  font-optical-sizing: auto;
  font-variation-settings: "wdth" 100;
  font-size: 1.875rem;
  display: grid;
  align-items: center;
  justify-content: flex-start;
  width: 46.4vw;
  height: 12vw;
  margin: 0 auto;
  padding: 1.3333333333vw 12vw;
  background: url(../img/top/news_btn_bg.png) center center no-repeat;
  background-size: 100% auto;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.072vw;
  position: relative;
}
.tp_news_btn::before {
  content: "";
  display: block;
  width: 12vw;
  height: 0.2666666667vw;
  background: #af0001;
  position: absolute;
  inset: 0;
  margin: auto;
  transition: 0.2s;
  left: auto;
  right: 9.0666666667vw;
}

/* posts
================================== */
.tp_posts {
  display: grid;
  gap: 6.8vw 0;
}

.tp_posts_link {
  display: grid;
  align-items: center;
  grid-template-columns: 21.3333333333vw minmax(0, 1fr);
  text-decoration: none;
}

.tp_posts_date {
  font-family: "Kalnia", serif;
  font-optical-sizing: auto;
  font-variation-settings: "wdth" 100;
  font-size: 2.125rem;
  display: flex;
  align-items: center;
  gap: 0 1.3333333333vw;
  color: #af0001;
  font-weight: 600;
  line-height: 1.1;
}
.tp_posts_date::after {
  content: "";
  display: inline-block;
  width: 5.3333333333vw;
  height: 2.4vw;
  background: url(../img/news/posts_deco.svg) no-repeat;
  background-size: 100% auto;
}

.tp_posts_main {
  min-width: 0;
}

.tp_posts_txt {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: 1.5625rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 500;
  color: #af0001;
  position: relative;
  z-index: 1;
}

/* official x
================================== */
.tp_official {
  position: relative;
  z-index: 1;
}

.tp_official_link {
  display: grid;
  align-items: center;
  width: 45.3333333333vw;
  height: 13.3333333333vw;
  margin: 0 auto;
  background: #840001;
  border-radius: 10em;
  color: #fff;
  text-decoration: none;
}
.tp_official_link span {
  font-family: "Kalnia", serif;
  font-optical-sizing: auto;
  font-variation-settings: "wdth" 100;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42.6666666667vw;
  height: 10.6666666667vw;
  border: 0.1333333333vw solid #c80000;
  border-radius: 10em;
}
.tp_official_link img {
  width: 20.1333333333vw;
}

/* movie
================================== */
.tp_movie {
  display: flex;
  align-items: center;
  width: 89.3333333333vw;
  height: 53.2vw;
  margin: 0 auto 0vw;
  position: relative;
}
.tp_movie::before {
  content: "";
  display: block;
  width: 88vw;
  height: 53.0666666667vw;
  background: url(../img/top/movie_frame_sp.png) center center no-repeat;
  background-size: 100% auto;
  position: absolute;
  left: 0.8666666667vw;
  z-index: 2;
  pointer-events: none;
}

.tp_movie_cont {
  width: 89.3333333333vw;
  height: 50.2666666667vw;
  border: 0.2666666667vw solid #af0001;
  position: relative;
  overflow: hidden;
}
.tp_movie_cont::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.tp_movie_player {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  inset: 0;
  margin: auto;
  pointer-events: none;
}

.tp_movie_btn {
  display: grid;
  place-content: center;
  width: 100%;
  height: 100%;
  background: none;
  border-radius: 100%;
  position: absolute;
  inset: 0;
  margin: auto;
  z-index: 1;
}

.tp_movie_btnBg {
  display: block;
  width: 26.5333333333vw;
  height: 26.5333333333vw;
  background: #da0001;
  border-radius: 100%;
  mix-blend-mode: darken;
  position: absolute;
  inset: 0;
  margin: auto;
  z-index: 1;
}

.tp_movie_btnImg {
  display: block;
  width: 23.3333333333vw;
  height: 20.2666666667vw;
}

.tp_movie_deco1 {
  width: 29.0666666667vw;
  height: 25.7333333333vw;
  background: url(../img/common/deco_glass_r.png);
  background-size: cover;
  position: absolute;
  top: -21.3333333333vw;
  right: -4.6666666667vw;
  z-index: 1;
  animation: fluffyAnim 4s ease-in-out infinite alternate;
}

.tp_movie_deco2 {
  width: 29.4666666667vw;
  height: 18.5333333333vw;
  background: url(../img/common/deco_glass_l.png);
  background-size: cover;
  position: absolute;
  bottom: -7.0666666667vw;
  left: -7.4666666667vw;
  z-index: 2;
  animation: fluffyAnim 4.4s ease-in-out 0.2s infinite alternate;
}

/* intro
================================== */
.tp_intro {
  min-height: 203.0666666667vw;
  background: url(../img/top/intro_bg_sp.png) center top no-repeat;
  background-size: 100% auto;
  position: relative;
  z-index: 1;
  overflow-x: clip;
}

.tp_intro_ttl {
  width: 89.0666666667vw;
  margin: 0 auto 3.3333333333vw;
  padding-bottom: 8.4vw;
  background: url(../img/common/ttl_line_sp.png) center bottom no-repeat;
  background-size: 50.2666666667vw 8.4vw;
}

.tp_intro_txt {
  font-size: 1.6875rem;
  margin-bottom: 1.6em;
  color: #fff;
  line-height: 2;
  letter-spacing: 0.3066666667vw;
  font-weight: 500;
  font-feature-settings: "palt";
}

.tp_intro_blue {
  font-weight: bold;
  text-shadow: 0 0 0.4vw #0090ff, 0 0 0.4vw #0090ff, 0 0 0.6666666667vw #0090ff, 0 0 0.6666666667vw #0090ff, 0.4vw 0.4vw 0.6666666667vw #0090ff, -0.4vw -0.4vw 0.6666666667vw #0090ff, 0vw 0.4vw 0.6666666667vw #0090ff, 0vw -0.4vw 0.6666666667vw #0090ff, 0.4vw 0vw 0.6666666667vw #0090ff, -0.4vw 0vw 0.6666666667vw #0090ff;
}

.tp_intro_red {
  font-weight: 900;
  text-shadow: 0 0 0.4vw #c60000, 0 0 0.4vw #c60000, 0 0 0.6666666667vw #c60000, 0 0 0.6666666667vw #c60000, 0.4vw 0.4vw 0.6666666667vw #c60000, -0.4vw -0.4vw 0.6666666667vw #c60000, 0vw 0.4vw 0.6666666667vw #c60000, 0vw -0.4vw 0.6666666667vw #c60000, 0.4vw 0vw 0.6666666667vw #c60000, -0.4vw 0vw 0.6666666667vw #c60000;
}
.tp_intro_red rt {
  text-shadow: none;
}

.tp_intro_catch {
  font-size: 2.1875rem;
  color: #fff;
  line-height: 1.6;
  letter-spacing: 0.1em;
  font-weight: bold;
}

.tp_intro_deco1 {
  width: 42.4vw;
  height: 36.1333333333vw;
  background: url(../img/top/deco_intro01.png);
  background-size: cover;
  position: absolute;
  bottom: -10.6666666667vw;
  right: -8vw;
  z-index: 1;
  animation: fluffyAnim 4s ease-in-out infinite alternate;
}

.tp_intro_deco2 {
  width: 28.6666666667vw;
  height: 21.7333333333vw;
  background: url(../img/top/deco_intro02.png);
  background-size: cover;
  position: absolute;
  bottom: -20.4vw;
  left: 12.2666666667vw;
  z-index: 12;
  animation: fluffyAnim 4.4s ease-in-out 0.2s infinite alternate;
}

/* =====================================
  helper
==================================== */
/* invalid link
================================== */
.hp_invalidLink {
  pointer-events: none;
}

/* visually hidden
================================== */
.hp_visuallyHidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* for iOS safari
================================== */
/* =====================================
  is
===================================== */
/* invalid link
================================== */
.is_invalidLink {
  pointer-events: none;
}

/* body
================================== */
body.is_fixed {
  position: fixed;
}

/* =====================================
  js
===================================== */
/* top gnav fixed
================================== */
.js_gnavBtnFixed {
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.3s 0.1s, opacity 0.3s 0s ease-in-out;
}
.js_gnavBtnFixed.is_fixed {
  opacity: 1;
  visibility: visible;
  transition: visibility 0.6s 0s, opacity 0.6s 0.1s ease-in-out;
}

/* hover image
================================== */
.js_hoverImg {
  position: relative;
  display: block;
  transition: opacity 0.2s ease;
}
.js_hoverImg img {
  display: block;
  width: 100%;
  height: auto;
}

/* fadeIn
================================== */
.js_fadeUpTrig {
  opacity: 0;
  transform: translateY(1em);
}
.js_fadeUpTrig.is_fadeUpAnim {
  animation: fadeUpAnim 0.4s ease-in 0.2s forwards;
  transform: translateY(0);
}

/* swiper
================================== */
.js_charaSliderThumb.is_hidden,
.js_charaPrev.is_hidden,
.js_charaNext.is_hidden {
  display: none;
}

/* =====================================
  swiper customize
===================================== */
/* top mv
================================== */
.js_kvSlider.swiper-fade .js_kvSliderList .swiper-slide {
  pointer-events: none;
  transition-property: opacity !important;
}
.js_kvSlider.swiper-fade .js_kvSliderList .swiper-slide-active {
  pointer-events: auto;
}
.js_kvSlider.swiper-fade .js_kvThumb .swiper-slide {
  pointer-events: auto;
}

.js_charaSlider.swiper-fade .js_charaSliderList .swiper-slide {
  pointer-events: none;
  transition-property: opacity !important;
}
.js_charaSlider.swiper-fade .js_charaSliderList .swiper-slide-active {
  pointer-events: auto;
}
.js_charaSlider.swiper-fade .js_charaSliderThumb .swiper-slide {
  pointer-events: auto;
}

/* =====================================
  keyframes
===================================== */
/* fadeIn
================================== */
@keyframes fadeInAnim {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOutAnim {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeUpAnim {
  0% {
    opacity: 0;
    transform: translate3d(0, 2em, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
/* spin
================================== */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* fluffy
================================== */
@media print, screen and (min-width: 821px){
  .none-md {
    display: none !important;
    content-visibility: hidden !important;
  }
  .block-md {
    display: block !important;
    content-visibility: visible !important;
  }
  html {
    font-size: 1.1713030747vw;
  }
  body {
    font-size: 1rem;
  }
  body::before {
    background-image: url(../img/common/bg.jpg);
  }
  body::after {
    height: 56.0029282577vw;
    background: url(../img/common/footer_bg.png) center bottom no-repeat;
    background-size: 100% auto;
  }
  ::-webkit-scrollbar {
    width: 0.2196193265vw;
  }
  .ly_footer_inner {
    height: 32.4304538799vw;
    margin-top: 0;
    padding-top: 23.2796486091vw;
    background: url(../img/common/footer_img.png) center bottom no-repeat;
    background-size: 60.1756954612vw auto;
  }
  .ly_main {
    margin-bottom: 13.9092240117vw;
    padding: 10.980966325vw 0 0;
    background-image: url(../img/common/pageheader_bg.png);
    z-index: 1;
  }
  .ly_main::before {
    width: 15.9590043924vw;
    height: 14.1288433382vw;
    top: 18.8872620791vw;
    right: 8.4919472914vw;
  }
  .ly_main::after {
    width: 16.1786237189vw;
    height: 10.1756954612vw;
    top: 52.8550512445vw;
    left: 0.439238653vw;
  }
  .ly_main_header {
    margin: 0 0 3.6603221083vw;
  }
  .ly_main_cont {
    margin: 0 auto;
    padding-bottom: 8.78477306vw;
  }
  .ly_main_cont.__news {
    width: 69.1068814056vw;
  }
  .ly_main_cont.__newsDet {
    width: 78.0380673499vw;
    margin: 0 auto;
  }
  .bl_backToTop {
    width: 2.0497803807vw;
    height: 11.3469985359vw;
    position: absolute;
    top: 14.8609077599vw;
    left: 3.6603221083vw;
  }
  .bl_backToTop_link {
    transition: 0.2s;
  }
  .bl_backToTop_link:hover {
    margin-top: -1.6105417277vw;
    background: url(../img/common/btt_on.png) left top no-repeat;
    background-size: 100% auto;
    transition: 0.2s;
  }
  .bl_movie {
    width: 69.5461200586vw;
    margin: 0 auto;
    padding-bottom: 1.4641288433vw;
  }
  .bl_comment {
    display: flex;
    justify-content: center;
    gap: 0 4.39238653vw;
    width: 80.9663250366vw;
    margin: 0 auto;
    padding-bottom: 1.4641288433vw;
  }
  .bl_comment_thumb {
    flex-shrink: 0;
    width: 27.4524158126vw;
    height: 27.4524158126vw;
  }
  .bl_comment_main {
    width: auto;
    max-width: 49.0483162518vw;
    margin-top: 0.7320644217vw;
    margin: 0.7320644217vw auto 0;
  }
  .bl_comment_header {
    margin: 0 0 2.196193265vw;
  }
  .bl_comment_label {
    font-size: 1.25rem;
    margin-bottom: 0.5124450952vw;
  }
  .bl_comment_name {
    font-size: 2.5rem;
  }
  .bl_comment_name span {
    font-size: 1.375rem;
  }
  .bl_comment_txt {
    font-size: 0.9375rem;
    line-height: 2;
    letter-spacing: -0.0219619327vw;
  }
  .bl_decoCloudH {
    height: 85.7247437775vw;
    background: url(../img/common/dec_cloud_1.png) left top repeat-x;
    background-size: 145.6808199122vw auto;
    top: -31.9180087848vw;
    animation: loopBg_cH 150s linear infinite;
  }
  @keyframes loopBg_cH {
    from {
      background-position: 0 0;
    }
    to {
      background-position: 145.6808199122vw 0;
    }
  }
  .bl_decoCloudF {
    height: 64.2020497804vw;
    background-size: 87.3352855051vw auto;
    bottom: 1.0248901903vw;
    animation: loopBg_cF 150s linear infinite;
  }
  @keyframes loopBg_cF {
    from {
      background-position: 0 0;
    }
    to {
      background-position: 87.3352855051vw 0;
    }
  }
  .bl_footerShare {
    margin-bottom: 1.6105417277vw;
  }
  .bl_footerShare_ttl {
    width: 4.0263543192vw;
    margin-bottom: 0.8052708638vw;
  }
  .bl_footerShare_list {
    gap: 2.196193265vw;
  }
  .bl_footerShare_link {
    transition: 0.2s;
  }
  .bl_footerShare_link:hover {
    opacity: 0.4;
    transition: 0.2s;
  }
  .bl_footerShare_link.__x {
    width: 1.3909224012vw;
  }
  .bl_footerShare_link.__fb {
    width: 0.8052708638vw;
  }
  .bl_footerShare_link.__line {
    width: 1.5373352855vw;
  }
  .bl_footerCopyright small {
    font-size: 0.8125rem;
  }
  .bl_gnav_btn {
    width: 17.9355783309vw;
    height: 17.7891654466vw;
    right: -6.588579795vw;
    top: -6.588579795vw;
  }
  .bl_gnav_btn:hover::before {
    animation-play-state: paused;
  }
  .bl_gnav_btn[aria-expanded=true] .bl_gnav_img {
    background-size: 6.3689604685vw auto;
  }
  .bl_gnav_btn::before {
    width: 17.9355783309vw;
    height: 17.7891654466vw;
    background-size: 17.9355783309vw auto;
  }
  .bl_gnav_img {
    width: 5.8565153734vw;
    height: 2.5622254758vw;
    background-size: 5.8565153734vw 2.5622254758vw;
    bottom: 5.8565153734vw;
    left: 4.0263543192vw;
  }
  .bl_gnav_inner {
    display: grid;
    place-content: center;
    min-height: 56.2225475842vw;
    background: url(../img/common/nav_bg.png) center center no-repeat;
    background-size: 53.7335285505vw;
  }
  .bl_gnav_main {
    width: 28.5505124451vw;
    height: 47.5841874085vw;
    padding-top: 14.6412884334vw;
  }
  .bl_gnav_list {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 2.3426061493vw 2em;
    margin: 0 auto;
  }
  .bl_gnav_link {
    font-size: 1.875rem;
    gap: 0 1.317715959vw;
    transition: 0.2s;
  }
  .bl_gnav_sns {
    margin-top: 3.2942898975vw;
  }
  .bl_gnav_x {
    width: 9.5168374817vw;
    height: 2.9282576867vw;
  }
  .bl_gnav_x:hover span {
    background: #c80000;
    transition: 0.2s;
  }
  .bl_gnav_x span {
    gap: 0 0.439238653vw;
    width: 8.78477306vw;
    height: 2.196193265vw;
    border-width: 0.0732064422vw;
    transition: 0.2s;
  }
  .bl_gnav_x img {
    width: 5.4904831625vw;
  }
  .bl_headerLogo {
    width: 13.8360175695vw;
    margin: 1.4641288433vw auto 0vw 1.317715959vw;
  }
  .bl_headerLogo a:hover {
    opacity: 0.6;
    transition: 0.6s;
  }
  .bl_loaderCover {
    height: 100vh;
    background-image: url(../img/common/bg.jpg);
  }
  .bl_loader_logo {
    width: 49.7803806735vw;
  }
  .bl_loader_cloud01 {
    height: 85.7247437775vw;
    background: url(../img/top/dec_cloud_1.png) left top repeat-x;
    background-size: 145.6808199122vw auto;
    top: -26.3543191801vw;
    animation: loopBg_c1 150s linear infinite reverse;
  }
  @keyframes loopBg_c1 {
    from {
      background-position: 0 0;
    }
    to {
      background-position: 145.6808199122vw 0;
    }
  }
  .bl_loader_cloud02 {
    height: 58.8579795022vw;
    background: url(../img/top/dec_cloud_2.png) left top repeat-x;
    background-size: 134.8462664714vw auto;
    bottom: -20.9370424597vw;
    animation: loopBg_c2 150s linear infinite;
  }
  @keyframes loopBg_c2 {
    from {
      background-position: 0 0;
    }
    to {
      background-position: 134.8462664714vw 0;
    }
  }
  .bl_modal_inner {
    padding: 10.980966325vw 0 10.2489019034vw;
  }
  .bl_modal::before {
    background-image: url(../img/common/bg.jpg);
    background-size: cover;
  }
  .bl_modal_close {
    width: 17.9355783309vw;
    height: 17.7891654466vw;
    right: -6.588579795vw;
    top: -6.588579795vw;
  }
  .bl_modal_close:hover::before {
    animation-play-state: paused;
  }
  .bl_modal_close::before {
    width: 17.9355783309vw;
    height: 17.7891654466vw;
    background-size: 17.9355783309vw auto;
  }
  .bl_modal_close::after {
    width: 8.78477306vw;
    height: 8.78477306vw;
    filter: blur(2.196193265vw);
  }
  .bl_modal_closeImg {
    width: 5.8565153734vw;
    height: 2.5622254758vw;
    background-size: 5.8565153734vw 2.5622254758vw;
    bottom: 5.8565153734vw;
    left: 4.0263543192vw;
  }
  .bl_pagerList {
    gap: 0 0.7320644217vw;
    margin: 6.2225475842vw 0 0 auto;
  }
  .bl_pager_prev,
  .page-numbers.prev,
  .bl_pager_next,
  .page-numbers.next {
    font-size: 1.25rem;
    height: 1.9033674963vw;
    margin-right: auto;
    letter-spacing: -0.0263543192vw;
    transition: 0.2s;
  }
  .bl_pager_prev:hover,
  .page-numbers.prev:hover,
  .bl_pager_next:hover,
  .page-numbers.next:hover {
    color: #d80001;
    transition: 0.2s;
  }
  .bl_pager_prev:hover::before,
  .page-numbers.prev:hover::before,
  .bl_pager_next:hover::before,
  .page-numbers.next:hover::before {
    transition: 0.2s;
  }
  .bl_pager_prev::before,
  .page-numbers.prev::before,
  .bl_pager_next::before,
  .page-numbers.next::before {
    width: 4.39238653vw;
    height: 0.0732064422vw;
  }
  .bl_pager_prev,
  .page-numbers.prev {
    padding-left: 6.588579795vw;
    background-size: 1.6837481698vw 1.9033674963vw;
  }
  .bl_pager_prev:hover::before,
  .page-numbers.prev:hover::before {
    width: 0;
  }
  .bl_pager_prev::before,
  .page-numbers.prev::before {
    left: 1.6105417277vw;
  }
  .bl_pager_next,
  .page-numbers.next {
    padding-right: 6.588579795vw;
    background-size: 1.6837481698vw 1.9033674963vw;
  }
  .bl_pager_next:hover::before,
  .page-numbers.next:hover::before {
    width: 0;
  }
  .bl_pager_next::before,
  .page-numbers.next::before {
    right: 1.6105417277vw;
  }
  .page-numbers {
    font-size: 1.25rem;
    letter-spacing: 0.439238653vw;
    transition: 0.2s;
  }
  .page-numbers:not(.prev, .next, .dots)::before, .page-numbers:not(.prev, .next, .dots)::after {
    width: 0.5856515373vw;
    height: 1.1713030747vw;
  }
  .page-numbers:not(.prev, .next, .dots)::before {
    right: 0.2196193265vw;
  }
  .page-numbers:not(.prev, .next, .dots)::after {
    left: -0.1464128843vw;
  }
  .page-numbers.dots {
    font-size: 1.5rem;
  }
  .bl_pager {
    margin: 8.0527086384vw auto 0 auto;
  }
  .bl_pager_detail li {
    display: grid;
    align-items: center;
    width: 50%;
    height: 4.39238653vw;
  }
  .bl_pager_back {
    position: absolute;
    inset: 0;
  }
  .bl_pager_backLink {
    font-size: 1.25rem;
    width: 21.9619326501vw;
    height: 4.39238653vw;
    padding: 0.7320644217vw 3.6603221083vw;
    letter-spacing: -0.0263543192vw;
    transition: 0.2s;
  }
  .bl_pager_backLink:hover {
    color: #d80001;
    transition: 0.2s;
  }
  .bl_pager_backLink:hover::before {
    width: 0;
  }
  .bl_pager_backLink::before {
    content: "";
    display: block;
    width: 12vw;
    height: 0.2666666667vw;
    background: #af0001;
    position: absolute;
    inset: 0;
    margin: auto;
    transition: 0.2s;
    left: auto;
    right: 4.5333333333vw;
  }
  .bl_post {
    margin: 7.3206442167vw auto 0;
    padding: 0.5124450952vw 8.78477306vw 1.6105417277vw;
  }
  .bl_post::before, .bl_post::after {
    height: 3.6603221083vw;
  }
  .bl_post::before {
    background-image: url(../img/news/frame_top.png);
    top: -3.6603221083vw;
  }
  .bl_post::after {
    background-image: url(../img/news/frame_btm.png);
    bottom: -3.6603221083vw;
  }
  .bl_post_header {
    margin-bottom: 1.4641288433vw;
  }
  .bl_post_date {
    font-size: 1.4375rem;
    margin-bottom: 2.196193265vw;
    padding-bottom: 2.196193265vw;
    background-image: url(../img/news/ttl_line.png);
  }
  .bl_post_ttl {
    font-size: 1.75rem;
    line-height: 1.8;
  }
  .bl_post_main {
    font-size: 0.9375rem;
    line-height: 2;
  }
  .bl_post_main p {
    margin-bottom: 1.0980966325vw;
  }
  .bl_post_main a:hover {
    text-decoration: none;
    transition: 0.6s;
  }
  .bl_post_main figure {
    margin: 1.8301610542vw 0;
  }
  .bl_post_main figure img {
    width: auto;
    margin: 0 0 3.6603221083vw;
  }
  .bl_posts {
    justify-content: center;
    gap: 1.0980966325vw 0;
    margin-top: -1.8301610542vw;
  }
  .bl_posts_item {
    height: 7.3206442167vw;
  }
  .bl_posts_link {
    grid-template-columns: 9.0775988287vw minmax(0, 1fr);
    width: 69.0336749634vw;
    height: 10.6881405564vw;
    padding: 1.0980966325vw 5.270863836vw;
    background-image: url(../img/news/posts_bg.png);
    background-size: 69.0336749634vw 10.6881405564vw;
    transition: 0.2s;
  }
  .bl_posts_link:hover {
    background-image: url(../img/news/posts_bg_hover.png);
  }
  .bl_posts_link:hover .bl_posts_date,
  .bl_posts_link:hover .bl_posts_txt {
    color: #fff;
  }
  .bl_posts_link:hover .bl_posts_date::after {
    background-image: url(../img/news/posts_deco_hover.svg);
  }
  .bl_posts_date {
    font-size: 1.4375rem;
    gap: 0 0.7320644217vw;
    transition: 0.2s;
  }
  .bl_posts_date::after {
    width: 1.9765739385vw;
    height: 0.878477306vw;
  }
  .bl_posts_txt {
    font-size: 0.9375rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: 0.2s;
  }
  .bl_posts_txt-none {
    font-size: 0.9375rem;
  }
  .el_btn::before {
    height: 1.0980966325vw;
    left: 2.4158125915vw;
  }
  .el_btn {
    font-size: 1.875rem;
    width: 15.7393850659vw;
    height: 4.39238653vw;
    padding-left: 0.5856515373vw;
    box-shadow: inset 0 0 0 0.7320644217vw #fff, 0 0 0 0.0732064422vw #000;
    letter-spacing: 0.439238653vw;
    transition: 0.2s;
  }
  .el_btn:hover {
    box-shadow: none;
    background: rgba(0, 0, 0, 0.6);
    transition: 0.2s;
  }
  .el_btn:hover::before {
    opacity: 1;
    transition: 0.2s;
  }
  .el_commentBtn {
    width: 2.5622254758vw;
    height: 0.878477306vw;
    background-size: 1.0248901903vw auto;
  }
  .el_commentBtn:hover {
    background: #fff url(../img/common/btn_cmt_hover.svg) center center no-repeat;
    background-size: 1.0248901903vw auto;
    transition: 0.2s;
  }
  .el_lv1Heading {
    padding-bottom: 3.953147877vw;
    background: url(../img/common/ttl_line.png) center bottom no-repeat;
    background-size: 21.2298682284vw 4.3191800878vw;
  }
  .el_lv1Heading.__news img {
    width: 25.1098096633vw;
  }
  .el_lv1Heading.__sc img {
    width: 57.7598828697vw;
  }
  .el_lv1Heading.__movie img {
    width: 28.9165446559vw;
  }
  .el_lv1Heading.__books img {
    width: 30.3074670571vw;
  }
  .el_lv1Heading.__chara img {
    width: 55.7833089312vw;
  }
  .el_lv2Heading {
    font-size: 1.5625rem;
    min-height: 4.6852122987vw;
    padding: 0.7320644217vw 0 0 2.4890190337vw;
    background-size: 4.6852122987vw 4.6852122987vw;
  }
  .bks_sect {
    width: 64.055636896vw;
    margin: 0 auto;
    padding-bottom: 7.1010248902vw;
    background: url(../img/books/line.png) center bottom no-repeat;
    background-size: 100% auto;
  }
  .bks_sect:not(:last-of-type) {
    margin-bottom: 5.8565153734vw;
  }
  .bks_sect_inner {
    display: grid;
    grid-template-columns: auto 24.4509516837vw;
    gap: 0 4.39238653vw;
  }
  .bks_sect_header {
    margin-bottom: 3.2942898975vw;
  }
  .bks_sect_credit {
    font-size: 0.875rem;
    margin-bottom: 2.0497803807vw;
  }
  .bks_sect_info {
    font-size: 1.875rem;
  }
  .bks_sect_info_sub {
    margin-top: 0.7320644217vw;
    font-size: 0.875rem;
  }
  .bks_bnr {
    width: 19.7657393851vw;
    margin-top: 3.6603221083vw;
  }
  .bks_bnr a:hover {
    opacity: 0.4;
    transition: 0.2s;
  }
  .bks_bnr a {
    border-width: 0.0732064422vw;
    transition: 0.2s;
  }
  .bks_sect_fig a {
    border: 0.1464128843vw solid transparent;
    transition: 0.2s;
  }
  .bks_sect_fig a:hover {
    border: 0.1464128843vw solid #c60000;
    opacity: 0.8;
    transition: 0.2s;
  }
  .bks_sect_fig a:hover img {
    scale: 1.1;
    transition: 0.2s;
  }
  .chara_thumb {
    width: 78.0380673499vw;
    margin: 0 auto 6.9546120059vw;
  }
  .chara_thumb_list {
    gap: 1.4641288433vw;
  }
  .chara_thumb_item {
    width: 5.8565153734vw;
    height: 5.8565153734vw;
  }
  .chara_slider_list {
    background: url(../img/chara/deco_flower.png) left top no-repeat;
    background-size: 39.0922401171vw auto;
  }
  .chara_sect {
    width: 78.0380673499vw;
    margin: 0 auto;
  }
  .chara_sect_inner {
    grid-template-columns: 29.0629575403vw auto;
  }
  .chara_name {
    font-size: 2.8125rem;
    margin-bottom: 0.5124450952vw;
    letter-spacing: -0.01em;
    line-height: 1.3;
  }
  .chara_cv {
    gap: 0 0.7320644217vw;
    min-height: 3.2210834553vw;
    margin-bottom: 0.878477306vw;
    padding-left: 2.5622254758vw;
    background-size: 1.8301610542vw auto;
  }
  .chara_cv_name {
    font-size: 1.25rem;
  }
  .chara_txt {
    font-size: 0.9375rem;
    margin-bottom: 2.9282576867vw;
    line-height: 2;
  }
  .chara_nameEn {
    top: 37.3352855051vw;
  }
  .chara_nameEn.__01 {
    width: 51.9033674963vw;
  }
  .chara_face {
    width: 36.0175695461vw;
    margin: 0 0 0 auto;
  }
  .chara_nav {
    width: 78.0380673499vw;
    margin: -3.6603221083vw auto 0;
    position: relative;
    z-index: 1;
  }
  .chara_prev,
  .chara_next {
    font-size: 1.25rem;
    height: 1.9033674963vw;
    letter-spacing: -0.0263543192vw;
    transition: 0.2s;
  }
  .chara_prev:hover,
  .chara_next:hover {
    color: #d80001;
    transition: 0.2s;
  }
  .chara_prev:hover::before,
  .chara_next:hover::before {
    transition: 0.2s;
  }
  .chara_prev::before,
  .chara_next::before {
    width: 4.39238653vw;
    height: 0.0732064422vw;
  }
  .chara_prev {
    padding-left: 6.588579795vw;
    background-size: 1.6837481698vw 1.9033674963vw;
  }
  .chara_prev:hover::before {
    width: 0;
  }
  .chara_prev::before {
    left: 1.6105417277vw;
  }
  .chara_next {
    margin-left: auto;
    padding-right: 6.588579795vw;
    background-size: 1.6837481698vw 1.9033674963vw;
  }
  .chara_next:hover::before {
    width: 0;
  }
  .chara_next::before {
    right: 1.6105417277vw;
  }
  .mv_thumbs {
    grid-template-columns: repeat(2, 1fr);
    gap: 5.3440702782vw 3.953147877vw;
    width: 73.7188872621vw;
    margin: 0 auto;
  }
  .mv_thumb {
    width: 34.9194729136vw;
  }
  .mv_thumb:hover .mv_thumb_caption {
    color: #fff;
    transition: 0.2s;
  }
  .mv_thumb:hover .mv_btn::before {
    opacity: 0;
    transition: 0.2s;
  }
  .mv_thumb:hover .mv_btn_img {
    opacity: 1;
    transition: 0.2s;
  }
  .mv_thumb:hover .mv_btn_bg {
    scale: 1.2;
    transition: 0.2s;
  }
  .mv_thumb:hover .mv_btn_icon {
    scale: 1.2;
    transition: 0.2s;
  }
  .mv_thumb_caption {
    font-size: 1.125rem;
    margin-top: 0.878477306vw;
    transition: 0.2s;
  }
  .mv_btn {
    border-width: 0.0732064422vw;
  }
  .mv_btn::before {
    height: 0.2196193265vw;
    bottom: -0.5124450952vw;
  }
  .mv_btn::after {
    width: 34.1142020498vw;
    height: 18.7408491947vw;
    background-size: 100% auto;
  }
  .mv_btn_img {
    aspect-ratio: 477/268;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .mv_btn_bg {
    width: 9.663250366vw;
    height: 9.5168374817vw;
    transition: 0.2s;
  }
  .mv_btn_icon {
    width: 9.4436310395vw;
    height: 8.2723279649vw;
    transition: 0.2s;
  }
  .sc_sect {
    width: 67.7891654466vw;
    margin: 0 auto;
    padding-bottom: 5.710102489vw;
    background: url(../img/staffcast/line.png) center bottom no-repeat;
    background-size: 67.7891654466vw;
  }
  .sc_sect:not(:last-of-type) {
    margin-bottom: 5.8565153734vw;
  }
  .sc_sect.__staff::after {
    display: none;
  }
  .sc_sect_header {
    margin-bottom: 3.2942898975vw;
  }
  .sc_credit {
    display: flex;
    flex-wrap: wrap;
    gap: 2.196193265vw 4.39238653vw;
    margin: 0 0 0 6.588579795vw;
  }
  .sc_credit.__single {
    justify-content: center;
    margin-left: 0;
  }
  .sc_credit_item.__full {
    width: 100%;
  }
  .sc_credit_role {
    font-size: 1rem;
    margin-bottom: 0.1464128843vw;
  }
  .sc_credit_wrap {
    gap: 0 1.0980966325vw;
  }
  .sc_credit_wrap .el_commentBtn {
    margin-top: 0.3660322108vw;
  }
  .sc_credit_name {
    font-size: 1.625rem;
  }
  .sc_credit_info {
    font-size: 0.875rem;
    margin-top: 0.2928257687vw;
  }
  .tp_word {
    height: 8.7115666179vw;
    background-size: 825.4026354319vw auto;
    top: 74.8169838946vw;
    animation: loopBg_w 150s linear infinite;
  }
  @keyframes loopBg_w {
    from {
      background-position: 0 0;
    }
    to {
      background-position: -823.9385065886vw 0;
    }
  }
  .tp_flower01 {
    height: 88.9458272328vw;
    background: url(../img/top/deco_flower01.png) left top no-repeat;
    background-size: 71.1566617862vw auto;
    top: 0;
  }
  .tp_flower02 {
    width: 27.5256222548vw;
    height: 44.5827232796vw;
    background: url(../img/top/deco_flower02.png) left top no-repeat;
    background-size: 27.5256222548vw auto;
    top: 104.0263543192vw;
  }
  .tp_cloud01 {
    height: 85.7247437775vw;
    background: url(../img/top/dec_cloud_1.png) left top repeat-x;
    background-size: 145.6808199122vw auto;
    top: 11.6398243045vw;
    animation: loopBg_c1 150s linear infinite;
  }
  @keyframes loopBg_c1 {
    from {
      background-position: 0 0;
    }
    to {
      background-position: 145.6808199122vw 0;
    }
  }
  .tp_cloud02 {
    height: 58.8579795022vw;
    background: url(../img/top/dec_cloud_2.png) left top repeat-x;
    background-size: 134.8462664714vw auto;
    top: 65.1537335286vw;
    animation: loopBg_c2 150s linear infinite;
  }
  @keyframes loopBg_c2 {
    from {
      background-position: 0 0;
    }
    to {
      background-position: 134.8462664714vw 0;
    }
  }
  .tp_cloud03 {
    height: 64.2020497804vw;
    background-size: 87.3352855051vw auto;
    top: 104.0263543192vw;
    animation: loopBg_c3 150s linear infinite;
  }
  @keyframes loopBg_c3 {
    from {
      background-position: 0 0;
    }
    to {
      background-position: 87.3352855051vw 0;
    }
  }
  .tp_hero {
    grid-template-columns: 39.2386530015vw auto;
    min-height: 87.8477306003vw;
    padding-top: 3.6603221083vw;
  }
  .tp_hero_main {
    height: 56.7349926794vw;
    position: sticky;
    top: 0;
  }
  .tp_hero_logo {
    width: 31.9180087848vw;
    margin-bottom: 2.196193265vw;
    margin-left: 3.6603221083vw;
  }
  .tp_hero_onair {
    width: 31.8448023426vw;
    margin-left: 3.6603221083vw;
    margin-bottom: 0.5856515373vw;
  }
  .tp_hero_kv {
    width: 53.4407027818vw;
  }
  .tp_hero_imgWrap {
    box-shadow: 0 0.3660322108vw 3.953147877vw 0.3660322108vw rgba(0, 0, 0, 0.75);
  }
  .tp_hero_catch {
    width: 48.7554904832vw;
    height: 48.9019033675vw;
    margin: 2.0497803807vw auto 0;
  }
  .tp_hero_catch01 {
    width: 4.7584187408vw;
  }
  .tp_hero_catch02 {
    width: 4.6852122987vw;
  }
  .tp_news {
    width: 35.1390922401vw;
    height: 32.5768667643vw;
    margin-left: 2.0497803807vw;
    background: url(../img/top/hero_news_bg.png) center top no-repeat;
    background-size: 100% auto;
  }
  .tp_news::before {
    width: 17.7891654466vw;
    height: 16.3982430454vw;
    bottom: -7.906295754vw;
    left: -1.6105417277vw;
    animation: fluffyAnim 3s ease-in-out infinite alternate;
  }
  .tp_news_inner {
    width: 23.4260614934vw;
    margin: 0 auto;
    padding: 5.1244509517vw 0 0;
  }
  .tp_news_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.4641288433vw;
  }
  .tp_news_ttl {
    width: 8.78477306vw;
  }
  .tp_news_btn {
    font-size: 0.8125rem;
    width: 11.3469985359vw;
    height: 2.9282576867vw;
    padding: 0.7320644217vw 2.7818448023vw;
    letter-spacing: -0.0168374817vw;
    transition: 0.2s;
  }
  .tp_news_btn:hover {
    color: #d80001;
    transition: 0.2s;
  }
  .tp_news_btn:hover::before {
    width: 0;
  }
  .tp_news_btn::before {
    width: 2.9282576867vw;
    height: 0.0732064422vw;
    right: 2.3426061493vw;
  }
  .tp_posts {
    gap: 1.0248901903vw 0;
  }
  .tp_posts_link {
    grid-template-columns: 6.0029282577vw minmax(0, 1fr);
    transition: 0.2s;
  }
  .tp_posts_link:hover {
    opacity: 0.4;
    transition: 0.2s;
  }
  .tp_posts_date {
    font-size: 1.0625rem;
    gap: 0 0.3660322108vw;
    transition: 0.2s;
  }
  .tp_posts_date::after {
    width: 1.5373352855vw;
    height: 0.6588579795vw;
  }
  .tp_posts_txt {
    font-size: 0.875rem;
    line-height: 1.4;
    transition: 0.2s;
  }
  .tp_official {
    margin-top: -5.8565153734vw;
  }
  .tp_official_link {
    width: 10.3221083455vw;
    height: 2.9282576867vw;
    margin: 0;
    padding-left: 1.1713030747vw;
    border-radius: 0 10em 10em 0;
  }
  .tp_official_link:hover span {
    background: #c80000;
    transition: 0.2s;
  }
  .tp_official_link span {
    width: 8.78477306vw;
    height: 2.196193265vw;
    border-width: 0.0732064422vw;
    transition: 0.2s;
  }
  .tp_official_link img {
    width: 5.4904831625vw;
  }
  .tp_movie {
    width: 100%;
    height: 29.2093704246vw;
    margin: 0 auto 7.1742313324vw;
  }
  .tp_movie::before {
    width: 99.4143484627vw;
    height: 29.2093704246vw;
    background: url(../img/top/movie_frame.png) center center no-repeat;
    background-size: 99.2679355783vw 29.2093704246vw;
    inset: 0;
    margin: auto;
  }
  .tp_movie_cont {
    width: 100%;
    height: 28.2576866764vw;
    border-width: 0.0732064422vw;
    cursor: pointer;
  }
  .tp_movie_cont:has(.tp_movie_btn:hover) .tp_movie_btnBg {
    scale: 1.2;
    transition: 0.2s;
  }
  .tp_movie_cont:has(.tp_movie_btn:hover) .tp_movie_btnImg {
    scale: 1.2;
    transition: 0.2s;
  }
  .tp_movie_cont:has(.tp_movie_btn:hover)::before {
    background: rgba(0, 0, 0, 0);
    transition: 0.2s;
  }
  .tp_movie_btn {
    transition: 0.2s;
  }
  .tp_movie_btnBg {
    width: 9.663250366vw;
    height: 9.5168374817vw;
    transition: 0.2s;
  }
  .tp_movie_btnImg {
    width: 9.4436310395vw;
    height: 8.2723279649vw;
    transition: 0.2s;
  }
  .tp_movie_deco1 {
    width: 15.9590043924vw;
    height: 14.1288433382vw;
    top: -9.8828696925vw;
    right: 1.0980966325vw;
  }
  .tp_movie_deco2 {
    width: 16.1786237189vw;
    height: 10.1756954612vw;
    bottom: -6.9546120059vw;
    left: 2.196193265vw;
  }
  .tp_intro {
    min-height: 74.6705710102vw;
    padding-top: 6.9546120059vw;
    background: url(../img/top/intro_bg.webp) center top no-repeat;
    background-size: 100% auto;
  }
  .tp_intro_ttl {
    width: 69.4729136164vw;
    padding-bottom: 3.953147877vw;
    margin: 0 auto 1.4641288433vw;
    background: url(../img/common/ttl_line.png) center bottom no-repeat;
    background-size: 21.2298682284vw 4.3191800878vw;
  }
  .tp_intro_desc {
    text-align: center;
  }
  .tp_intro_txt {
    font-size: 1rem;
    margin-bottom: 1.9em;
    line-height: 1.8;
    letter-spacing: 0.1em;
  }
  .tp_intro_blue {
    text-shadow: 0 0 0.2196193265vw #0090ff, 0 0 0.2196193265vw #0090ff, 0 0 0.3660322108vw #0090ff, 0 0 0.3660322108vw #0090ff, 0.2196193265vw 0.2196193265vw 0.3660322108vw #0090ff, -0.2196193265vw -0.2196193265vw 0.3660322108vw #0090ff, 0vw 0.2196193265vw 0.3660322108vw #0090ff, 0vw -0.2196193265vw 0.3660322108vw #0090ff, 0.2196193265vw 0vw 0.3660322108vw #0090ff, -0.2196193265vw 0vw 0.3660322108vw #0090ff;
  }
  .tp_intro_red {
    text-shadow: 0 0 0.2196193265vw #c60000, 0 0 0.2196193265vw #c60000, 0 0 0.3660322108vw #c60000, 0 0 0.3660322108vw #c60000, 0.2196193265vw 0.2196193265vw 0.3660322108vw #c60000, -0.2196193265vw -0.2196193265vw 0.3660322108vw #c60000, 0vw 0.2196193265vw 0.3660322108vw #c60000, 0vw -0.2196193265vw 0.3660322108vw #c60000, 0.2196193265vw 0vw 0.3660322108vw #c60000, -0.2196193265vw 0vw 0.3660322108vw #c60000;
  }
  .tp_intro_catch {
    font-size: 1.25rem;
    line-height: 1.6;
  }
  .tp_intro_deco1 {
    width: 23.2796486091vw;
    height: 19.8389458272vw;
    bottom: 11.4934114202vw;
    right: -2.4890190337vw;
  }
  .tp_intro_deco2 {
    width: 15.7393850659vw;
    height: 11.9326500732vw;
    bottom: -0.878477306vw;
    left: auto;
    right: 27.8184480234vw;
  }
  .js_hoverImg .is_default,
  .js_hoverImg .is_hover {
    transition: opacity 0.2s ease;
  }
  .js_hoverImg .is_hover {
    position: absolute;
    inset: 0;
    opacity: 0;
  }
  .js_hoverImg:hover .is_default, .js_hoverImg:focus-visible .is_default {
    opacity: 0;
  }
  .js_hoverImg:hover .is_hover, .js_hoverImg:focus-visible .is_hover {
    opacity: 1;
  }
  @keyframes fluffyAnim {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-0.5em);
    }
  }
}
@media screen and (max-width: 820px){
  .none-d-md {
    display: none !important;
    content-visibility: hidden !important;
  }
  .block-d-md {
    display: block !important;
    content-visibility: visible !important;
  }
  html {
    font-size: 2.1333333333vw;
  }
  .ly_main.__sc::after {
    display: none;
  }
  .ly_main_cont {
    padding-bottom: 16vw;
    position: relative;
    z-index: 1;
  }
  .ly_main_cont.__news {
    margin: 0 2.6666666667vw;
  }
  .bl_backToTop {
    margin: 0 auto;
  }
  .bl_comment_thumb {
    margin-bottom: 5.3333333333vw;
  }
  .bl_gnav_inner {
    min-height: 177.8666666667vw;
  }
  .bl_gnav_main {
    margin-top: 12.5333333333vw;
    padding-top: 17.0666666667vw;
  }
  .bl_gnav_list {
    flex-direction: column;
    margin: 0vw 5.3333333333vw 6.9333333333vw;
  }
  .bl_pagerList {
    padding: 12.6666666667vw 0 0;
  }
  .bl_pager_prev,
  .page-numbers.prev,
  .bl_pager_next,
  .page-numbers.next {
    top: 0;
    z-index: 1;
  }
  .bl_pager {
    padding-top: 13.3333333333vw;
  }
  .bl_pager_detail li.__prev {
    margin-right: auto;
  }
  .bl_pager_detail li.__next {
    margin-left: auto;
  }
  .bl_pager_prev,
  .bl_pager_next {
    position: absolute;
  }
  .bl_pager_back {
    width: 100%;
  }
  .bl_post_main figure img {
    width: 100%;
  }
  .bl_posts {
    margin: 0 auto;
  }
  .bl_posts_link {
    filter: drop-shadow(0vw 0vw 1.3333333333vw rgb(255, 255, 255));
  }
  .bl_posts_txt {
    line-height: 1.6;
  }
  .bks_sect_header {
    margin-left: 2.6666666667vw;
  }
  .bks_sect_info_sub {
    margin-top: 1.3333333333vw;
    font-size: 1.5rem;
  }
  .chara_prof_inner {
    margin: 0 5.3333333333vw;
  }
  .chara_nameEn {
    bottom: 10.6666666667vw;
  }
  .chara_nameEn.__01 {
    min-width: 188.4vw;
    margin-left: 2.6666666667vw;
  }
  .chara_visual {
    margin-bottom: 10vw;
    overflow: hidden;
  }
  .mv_thumbs {
    margin: 0 5.3333333333vw;
  }
  .sc_sect_header {
    margin-left: 2.6666666667vw;
  }
  .sc_credit.__single {
    display: block;
  }
  .sc_credit_item.__full .sc_credit_info {
    display: inline-block;
  }
  .sc_credit_name {
    line-height: 1.3;
  }
  .sc_credit_name:not(:last-of-type) {
    margin-bottom: 0.6666666667vw;
  }
  .tp_hero {
    margin: 0vw 0vw 0;
  }
  .tp_hero_main {
    display: grid;
    order: 2;
    margin-top: -24.2666666667vw;
  }
  .tp_hero_logo {
    order: 1;
  }
  .tp_hero_onair {
    order: 2;
  }
  .tp_hero_kv {
    order: 1;
    padding: 2.6666666667vw;
  }
  .tp_hero_catch01 {
    margin-top: 10.9333333333vw;
  }
  .tp_news {
    order: 4;
    margin-bottom: 18.2666666667vw;
  }
  .tp_news_ttl {
    margin: 0 auto;
  }
  .tp_posts {
    margin-bottom: 9.6vw;
  }
  .tp_posts_txt {
    line-height: 1.6;
  }
  .tp_official {
    order: 3;
    margin-bottom: 5.0666666667vw;
  }
  .tp_official_link {
    justify-content: center;
  }
  .tp_movie_thumb {
    width: 89.3333333333vw;
    height: 50.2666666667vw;
    scale: 1.5;
    position: relative;
    overflow: hidden;
  }
  .tp_intro {
    margin-bottom: 33.8666666667vw;
    padding: 19.3333333333vw 5.3333333333vw 0;
  }
  .tp_intro_red.__narrow {
    letter-spacing: 0.1333333333vw;
  }
  .hp_safari .hp_safari_dummy {
    position: fixed;
    z-index: -1;
    transform: translate3d(0, 0, 0.1333333333vw);
  }
  .hp_safari::before, .hp_safari::after {
    content: "";
    position: fixed;
    left: 0;
    z-index: 9999;
    transform: translate3d(0, 0, 9999px);
    width: 100%;
    height: 26.6666666667vw;
    background: #000;
  }
  .hp_safari::before {
    top: -26.6666666667vw;
  }
  .hp_safari::after {
    bottom: -26.6666666667vw;
  }
  .js_hoverImg .is_hover {
    position: absolute;
    inset: 0;
    opacity: 0;
  }
  @keyframes fluffyAnim {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-0.3em);
    }
  }
}
@media print and (hover: hover) and (pointer: fine), screen and (min-width: 821px) and (hover: hover) and (pointer: fine){
  .bl_gnav_link:where(:-moz-any-link, :enabled, summary):hover {
    margin-left: 0;
    color: #af0001;
    -moz-transition: 0.2s;
    transition: 0.2s;
  }
  .bl_gnav_link:where(:any-link, :enabled, summary):hover {
    margin-left: 0;
    color: #af0001;
    transition: 0.2s;
  }
  .bl_gnav_link:where(:-moz-any-link, :enabled, summary):hover::before {
    opacity: 1;
    -moz-transition: 0.2s;
    transition: 0.2s;
  }
  .bl_gnav_link:where(:any-link, :enabled, summary):hover::before {
    opacity: 1;
    transition: 0.2s;
  }
}
@media print, screen and (min-width: 821px) and (min-width: 821px){
  .bl_pager_backLink::before {
    width: 4.39238653vw;
    height: 0.0732064422vw;
    right: 2.3426061493vw;
  }
}
