@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;
  color: #000;
  font-family: "Noto Sans JP", "Noto Sans CJK JP", sans-serif;
  word-wrap: break-word;
  overflow-wrap: break-word;
  position: relative;
  animation: fadeInAnim 0.2s ease-in forwards;
}
body::before, body::after {
  content: "";
  display: block;
  width: 100%;
}
body::before {
  height: 100%;
  background: url(../img/common/bg_sp.jpg) right top no-repeat;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
}
body::after {
  height: 34.4vw;
  background: url(../img/common/header_bg_sp.png) left top no-repeat;
  background-size: 100%;
  position: absolute;
  top: 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: #00e1e9;
}

@-moz-document url-prefix() {
  html {
    scrollbar-width: thin;
    scrollbar-color: #00e1e9 #eee;
  }
}
/* =====================================
  ly_cont
===================================== */
.ly_contDeco {
  display: block;
  width: 60.6666666667vw;
  background: url(../img/common/header_deco.png) left top no-repeat;
  background-size: 100%;
  aspect-ratio: 1/1;
  position: fixed;
  top: -23.0666666667vw;
  left: -18vw;
  animation: spin 54s linear infinite;
}

.ly_contBg {
  width: 53.8666666667vw;
  height: 75.0666666667vw;
  background: url(../img/common/footer_bg_sp.png) right bottom no-repeat;
  background-size: cover;
  position: absolute;
  right: 0;
  bottom: 78.1333333333vw;
  z-index: 1;
}

/* ======================================
  ly_footer
====================================== */
.ly_footer {
  min-height: 89.0666666667vw;
  margin: 0 4vw;
  padding: 30.4vw 5.3333333333vw 9.3333333333vw;
  border-radius: 2.6666666667vw;
  background: #00e1e9;
  position: relative;
  z-index: 2;
}

/* ======================================
  ly_header
====================================== */
.ly_header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

/* =====================================
  ly_main
===================================== */
.ly_main {
  margin: 0vw 5.3333333333vw 57.3333333333vw;
  padding: 0vw 0 0;
  position: relative;
  z-index: 1;
}

.ly_main_header {
  margin: 0 0vw 10.6666666667vw;
  position: relative;
  text-align: left;
}

/* =====================================
  back to top
===================================== */
.bl_backToTop {
  width: 38.6666666667vw;
  height: 38.6666666667vw;
  position: absolute;
  inset: 0;
  margin: 0 auto;
  top: -18.6666666667vw;
}

.bl_backToTop_link {
  display: grid;
  place-content: center;
  width: 100%;
  height: 100%;
  background: url(../img/common/btt_deco.svg) left top no-repeat;
  background-size: cover;
  text-decoration: none;
  position: absolute;
}

.bl_backToTop_txt {
  font-family: "Jersey 10", sans-serif;
  font-optical-sizing: auto;
  font-size: 1.5625rem;
  display: inline-block;
  margin-top: -2.6666666667vw;
  text-transform: uppercase;
  color: #000;
  letter-spacing: 0.6666666667vw;
}
.bl_backToTop_txt::before {
  content: "";
  display: block;
  height: 1.8666666667vw;
  margin: 0 auto 0.8vw;
  background: #000;
  position: relative;
  aspect-ratio: 16/14;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  animation: rotationY 2.5s linear infinite;
}

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

.bl_comment_prof {
  position: relative;
}

.bl_comment_thumbFrame {
  display: grid;
  place-content: center;
  width: 43.7333333333vw;
  height: 49.2vw;
  background: url(../img/comment/frame.png) no-repeat;
  background-size: 43.7333333333vw auto;
}

.bl_comment_thumb {
  width: 31.6vw;
  border: 0.1333333333vw solid #0096d9;
}

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

.bl_comment_label {
  order: 1;
  position: relative;
  display: inline-grid;
  place-content: center;
  min-height: 10vw;
  margin-bottom: 2.6666666667vw;
  padding: 0 6.6666666667vw;
  background: #0fa4dd;
  position: relative;
  z-index: 1;
  transform: skewX(25deg);
}
.bl_comment_label::before {
  content: "";
  border: 0.2666666667vw solid #fff;
  position: absolute;
  inset: 0.4vw;
}
.bl_comment_label span {
  font-family: "DotGothic16", sans-serif;
  font-size: 1.875rem;
  display: block;
  color: #fff;
  font-weight: normal;
  letter-spacing: 0.2vw;
  transform: skewX(-25deg);
  white-space: nowrap;
}

.bl_comment_name {
  font-size: 3.75rem;
  order: 2;
  display: block;
  margin-left: 2.6666666667vw;
  font-weight: bold;
  color: #000;
  letter-spacing: 0.4vw;
  line-height: 1.2;
}

.bl_comment_frame {
  padding: 0.9333333333vw;
  border: 0.4vw solid #000;
  border-radius: 2.6666666667vw;
  text-align: left;
  position: relative;
}

.bl_comment_frameInner {
  display: grid;
  width: 100%;
  padding: 7.6vw 2.6666666667vw 8vw;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 1.7333333333vw;
}

.bl_comment_txt {
  font-family: "DotGothic16", sans-serif;
  font-size: 1.875rem;
  color: #fff;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

.bl_comment_illust {
  width: 89.3333333333vw;
  margin: 0 auto;
}

/* ======================================
  footer
===================================== */
/* share
================================== */
.bl_footerShare {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4vw;
  width: 10vw;
  height: 40vw;
  padding: 2vw 1.4666666667vw;
  background: #fff;
  border-radius: 10em;
  position: absolute;
  left: auto;
  right: 3.2vw;
}

.bl_footerShare_ttl {
  width: 7.0666666667vw;
}

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

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

/* footerBnrs
================================== */
.bl_footerBnrs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 5.3333333333vw;
}

.bl_footerBnr {
  display: block;
  width: 52vw;
}

/* copyright
================================== */
.bl_footerCopyright {
  font-family: "DotGothic16", sans-serif;
  margin-top: 11.6vw;
  color: #000;
  text-align: center;
}
.bl_footerCopyright small {
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.05em;
}

/* =====================================
  bl_gnav
===================================== */
.bl_gnav {
  pointer-events: auto;
}

/* button
================================== */
.bl_gnav_btn {
  width: 13.3333333333vw;
  height: 13.3333333333vw;
  padding: 0;
  border: 0.2666666667vw solid #000;
  background: rgba(0, 0, 0, 0.2) url(../img/common/btn_open.png) center center no-repeat;
  background-size: 10vw auto;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  transition: 0.2s;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 30;
  outline: none;
}
.bl_gnav_btn[aria-expanded=true] {
  background-image: url(../img/common/btn_close.png);
  background-size: 10vw auto;
  transition: 0.2s;
}

/* body
================================== */

/* inner
================================== */

/* logo
================================== */
.bl_gnav_logo {
  width: 66.5333333333vw;
  height: 33.6vw;
  margin-bottom: 2.6666666667vw;
  position: relative;
  z-index: 1;
}

/* gnav list
================================== */
.bl_gnav_list {
  display: grid;
  gap: 2vw;
  position: relative;
}

.bl_gnav_link, .bl_gnav_sns a {
  font-family: "Jersey 10", sans-serif;
  font-optical-sizing: auto;
  font-size: 4.25rem;
  display: inline-flex;
  align-items: center;
  color: #000;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
  letter-spacing: 1.7333333333vw;
  white-space: nowrap;
  filter: drop-shadow(0 0 0.1333333333vw rgb(255, 255, 255)) drop-shadow(0 0 0.2666666667vw rgb(255, 255, 255)) drop-shadow(0 0 0.2666666667vw rgb(255, 255, 255)) drop-shadow(0 0 0.2666666667vw rgb(255, 255, 255)) drop-shadow(0 0 0.2666666667vw rgb(255, 255, 255));
  transition: 0.2s;
  position: relative;
  z-index: 1;
}
.bl_gnav_link[aria-current=page], .bl_gnav_sns a[aria-current=page], .bl_gnav_link[aria-current=location], .bl_gnav_sns a[aria-current=location], .bl_gnav_link.is_current, .bl_gnav_sns a.is_current {
  color: #00a1e9;
}
.bl_gnav_link[aria-current=page]::before, .bl_gnav_sns a[aria-current=page]::before, .bl_gnav_link[aria-current=location]::before, .bl_gnav_sns a[aria-current=location]::before, .bl_gnav_link.is_current::before, .bl_gnav_sns a.is_current::before {
  content: "";
  display: inline-block;
  height: 3.3333333333vw;
  margin-right: 3.7333333333vw;
  aspect-ratio: 25/30;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: #00a1e9;
  opacity: 1;
}

/* sns
================================== */
/* ======================================
  header
===================================== */
.bl_headerLogo {
  width: 26.6666666667vw;
  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_lead {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: 2.5rem;
  margin-bottom: 9.6vw;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.2928257687vw;
  line-height: 1;
  transform: scaleY(2);
  transform-origin: center bottom;
}
.bl_loader_lead ruby {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  vertical-align: bottom;
  color: #0096d9;
  line-height: 1;
}
.bl_loader_lead rt {
  font-size: 1.5rem;
  order: -1;
  margin-bottom: -0.2em;
  line-height: 1;
  letter-spacing: 0.64vw;
  transform: scaleY(0.5) translateX(0.4em);
}

.bl_loader_char {
  display: inline-block;
  opacity: 0;
}

.bl_loader_btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 5.3333333333vw;
  opacity: 0;
  transform: translateY(2.6666666667vw);
}

.bl_loader_btn {
  font-family: "Jersey 10", sans-serif;
  font-optical-sizing: auto;
  font-size: 1.875rem;
  display: grid;
  place-content: center;
  width: 28.6666666667vw;
  height: 8vw;
  border-radius: 1.3333333333vw;
  border: 0.2666666667vw solid #000;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  position: relative;
}
.bl_loader_btn.__on {
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
}
.bl_loader_btn.__on::before {
  content: "";
  display: inline-block;
  height: 2vw;
  aspect-ratio: 10/15;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: #fff;
  position: absolute;
  inset: 0;
  margin: auto;
  left: 4.4vw;
  right: auto;
  transition: 0.2s;
}

/* 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;
}

/* content wrap (内側のコンテンツ)
================================== */
.bl_modal_inner {
  width: 100%;
  padding: 13.3333333333vw 5.3333333333vw 13.3333333333vw;
  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_comment {
  animation: fadeInAnim 0.2s ease-out forwards;
}
.bl_modal.is_closing {
  animation: fadeOutAnim 0.1s ease forwards;
}
.bl_modal.is_closing::backdrop {
  animation: fadeInAnim 0.2s ease-out reverse forwards;
}
.bl_modal::backdrop {
  opacity: 0;
  animation: fadeInAnim 0.1s ease forwards;
}

/* close button
================================== */
.bl_modal_close {
  width: 13.3333333333vw;
  height: 13.3333333333vw;
  padding: 0;
  border: 0.2666666667vw solid #000;
  background: rgba(0, 0, 0, 0.2) url(../img/common/btn_close.png) center center no-repeat;
  background-size: 10vw auto;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  transition: 0.2s;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 30;
  outline: none;
}

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 1.6em;
  margin: 14.6666666667vw auto 0;
  position: relative;
}

/* prev / next
================================== */
.bl_pager_prev,
.page-numbers.prev,
.bl_pager_next,
.page-numbers.next {
  font-family: "Jersey 10", sans-serif;
  font-optical-sizing: auto;
  font-size: 2.8125rem;
  display: 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: absolute;
}

/* prev
================================== */
.bl_pager_prev,
.page-numbers.prev {
  position: absolute;
  left: 0;
}

/* next
================================== */
.bl_pager_next,
.page-numbers.next {
  position: absolute;
  right: 0;
}

/* number
================================== */
.page-numbers {
  font-family: "Jersey 10", sans-serif;
  font-optical-sizing: auto;
  font-size: 2.8125rem;
  text-decoration: none;
  color: #000;
  letter-spacing: 0;
  line-height: 1;
  position: relative;
}
.page-numbers:not(.prev, .next, .dots).current, .page-numbers:not(.prev, .next, .dots):hover {
  color: #00a1e9;
}
.page-numbers.dots {
  font-size: 1.6875rem;
  align-items: flex-end;
  color: #000;
  letter-spacing: 0;
}

/* detail page
================================== */
.bl_pager {
  margin: 15.4666666667vw 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: "Cormorant", serif;
  font-optical-sizing: auto;
  display: block;
  text-align: center;
  line-height: 1;
}

.bl_pager_backLink {
  font-family: "Jersey 10", sans-serif;
  font-optical-sizing: auto;
  font-size: 2.8125rem;
  display: grid;
  place-content: center;
  width: 42.6666666667vw;
  height: 12vw;
  margin: auto;
  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;
}

/* =====================================
  post
===================================== */
.bl_post_header {
  margin-bottom: 4.6666666667vw;
  padding: 0.9333333333vw;
  border: 0.4vw solid #000;
  border-radius: 2.6666666667vw;
  position: relative;
}

.bl_post_headerInner {
  display: grid;
  width: 100%;
  padding: 4.6666666667vw 2.6666666667vw;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 1.7333333333vw;
}

.bl_post_date {
  font-family: "Jersey 10", sans-serif;
  font-optical-sizing: auto;
  font-size: 2.5rem;
  order: 1;
  display: grid;
  place-content: center;
  width: 43.8666666667vw;
  height: 8vw;
  background: url(../img/news/bg_time.png) left top no-repeat;
  background-size: cover;
  color: #fff;
  line-height: 1;
  letter-spacing: 1.0666666667vw;
  position: absolute;
  top: -4.4vw;
  right: 2.6666666667vw;
}

.bl_post_ttl {
  font-family: "DotGothic16", sans-serif;
  font-size: 2rem;
  order: 2;
  width: 100%;
  color: #fff;
  font-weight: normal;
  line-height: 1.7;
  letter-spacing: 0.24vw;
}

.bl_post_frame {
  font-size: 1.6875rem;
  padding: 0.9333333333vw;
  border: 0.4vw solid #000;
  border-radius: 2.6666666667vw;
}

.bl_post_main {
  font-size: 1.75rem;
  padding: 7.6vw 2.6666666667vw 2.6666666667vw;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 0.9516837482vw;
  letter-spacing: 0.05em;
  line-height: 1.7;
  font-weight: 500;
  color: #000;
}
.bl_post_main p {
  margin-bottom: 6.6666666667vw;
  color: #000;
}
.bl_post_main b, .bl_post_main strong {
  font-weight: 500;
}
.bl_post_main a {
  display: inline-block;
  text-decoration: none;
  color: #00a1e9;
  transition: 0.6s;
}
.bl_post_main figure {
  margin: 9.3333333333vw 0 8.6666666667vw;
}
.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: 14.1333333333vw 0;
  width: 100%;
}

.bl_posts_item:nth-child(odd) .bl_posts_link {
  margin-left: auto;
}
.bl_posts_item:nth-child(odd) .bl_posts_link::after {
  right: 6.6666666667vw;
  left: auto;
}

.bl_posts_link {
  display: block;
  height: 36vw;
  padding: 0.4vw;
  border: 0.5333333333vw solid #000;
  border-radius: 4vw;
  background: #fff;
  text-decoration: none;
  position: relative;
}
.bl_posts_link::after {
  content: "";
  display: block;
  width: 6.1333333333vw;
  height: 5.6vw;
  background: url(../img/news/item_deco_sp.png) center top no-repeat;
  background-size: 6.1333333333vw auto;
  position: absolute;
  bottom: -5.6vw;
  left: 6.6666666667vw;
}

.bl_posts_frame {
  height: 100%;
  padding: 3.7333333333vw 2.6666666667vw 4.6666666667vw;
  border: 0.5333333333vw solid #000;
  border-radius: 3.3333333333vw;
  transition: 0.2s;
}

.bl_posts_date {
  font-family: "Jersey 10", sans-serif;
  font-optical-sizing: auto;
  font-size: 1.875rem;
  display: flex;
  align-items: center;
  gap: 0 2vw;
  margin-bottom: 1.0666666667vw;
  background-size: 3.0666666667vw;
  color: #00a1e9;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
}
.bl_posts_date::after {
  content: "";
  display: inline-block;
  width: 17.0666666667vw;
  height: 0.4vw;
  background: #00a1e9;
}

.bl_posts_txt {
  font-size: 1.875rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 500;
  color: #000;
  line-height: 1.75;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}

/* ======================================
  button
===================================== */
.el_btn {
  font-family: "Jersey 10", sans-serif;
  font-optical-sizing: auto;
  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 {
  width: 6vw;
  height: 4.6666666667vw;
  background: url(../img/top/cmmnt_btn.png) left top no-repeat;
  background-size: 100% auto;
}

/* ======================================
  heading
===================================== */
.el_lv1Heading {
  font-family: "Jersey 10", sans-serif;
  font-optical-sizing: auto;
  font-size: 5.625rem;
  display: inline-flex;
  align-items: center;
  gap: 0 5.8666666667vw;
  background-image: linear-gradient(to bottom, rgb(0, 0, 0) 0%, transparent 100%), linear-gradient(to bottom, #002060 0%, #00a1e9 100%);
  background-position: left bottom;
  line-height: 0.55;
  letter-spacing: 0.2em;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-weight: normal;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.el_lv1Heading::before {
  content: "";
  display: inline-block;
  height: 4vw;
  aspect-ratio: 2/3;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background-image: linear-gradient(to bottom, rgb(0, 0, 0) 0%, transparent 100%), linear-gradient(to bottom, #002060 0%, #00a1e9 100%);
  animation: rotationX 2.5s linear infinite;
}

.el_lv2Heading {
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-size: 2.8125rem;
  padding-bottom: 1.2vw;
  border-bottom: 0.2666666667vw solid #1a2c7e;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  color: #1a2c7e;
  letter-spacing: 1.2vw;
}

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

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

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

.chara_thumb_list {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 2.6666666667vw;
}

.chara_thumb_item {
  width: 20.4vw;
  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: 20.4vw;
  height: 21.7333333333vw;
  position: relative;
  cursor: pointer;
}

.chara_thumb_img {
  margin-top: auto;
  position: absolute;
  top: auto;
  bottom: 0;
}

/* slider list
================================== */
.chara_visual {
  opacity: 0;
}

.chara_slider_item.swiper-slide-active .chara_visual {
  opacity: 1;
  transition: 0.2s ease-in 0.2s;
}

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

/* prof
================================== */

.chara_name {
  position: relative;
  display: inline-grid;
  place-content: center;
  min-height: 12vw;
  padding: 0 4vw;
  background: #0fa4dd;
  position: relative;
  z-index: 1;
  transform: skewX(25deg);
}
.chara_name::before {
  content: "";
  border: 0.5333333333vw solid #fff;
  position: absolute;
  inset: 0.4vw;
}
.chara_name span {
  font-family: "DotGothic16", sans-serif;
  font-size: 2.8125rem;
  display: block;
  color: #fff;
  font-weight: normal;
  letter-spacing: 0.3vw;
  transform: skewX(-25deg);
}

.chara_frame {
  margin-top: -3.6vw;
  padding: 0.9333333333vw;
  border: 0.4vw solid #000;
  border-radius: 2.6666666667vw;
  position: relative;
}

.chara_frame_inner {
  display: grid;
  width: 100%;
  padding: 8.9333333333vw 2.6666666667vw 6.6666666667vw;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 1.7333333333vw;
}

.chara_cv {
  font-size: 1.5rem;
  margin-bottom: 0.9333333333vw;
  color: #ffe65d;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: right;
}

.chara_txt {
  font-family: "DotGothic16", sans-serif;
  font-size: 1.875rem;
  color: #fff;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

/* visual
================================== */
.chara_visual {
  position: relative;
  z-index: 20;
}

.chara_face {
  width: 54.8vw;
  height: 54.8vw;
}

.chara_face_img {
  display: block;
  transform: rotateY(-90deg);
  backface-visibility: hidden;
  transform-style: preserve-3d;
  position: absolute;
  top: 0;
  left: 0;
}
.chara_face_img.is_active {
  transform: rotateY(0deg);
}

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

/* =====================================
  top / .tp_
===================================== */
/* hero
================================== */
.tp_hero {
  position: relative;
  z-index: 1;
}

.tp_hero_kv {
  position: relative;
}

.tp_hero_onair {
  height: 40.6666666667vw;
  background: url(../img/top/onair_bg_sp.webp) right bottom no-repeat;
}

.tp_hero_onairImg {
  width: 95.6vw;
}

/* news
================================== */
.tp_news {
  background: url(../img/top/rainbow.webp) center 32.8vw no-repeat;
  background-size: auto 136vw;
  position: relative;
  z-index: 1;
}

.tp_news_inner {
  margin: 0vw 5.3333333333vw 0;
  padding: 14.5333333333vw 0 0;
}

.tp_news_header {
  margin-bottom: 11.2vw;
}

.tp_news_btnWrap {
  text-align: center;
  position: relative;
  z-index: 1;
}

/* intro
================================== */
.tp_intro {
  position: relative;
  z-index: 1;
}
.tp_intro::before {
  content: "";
  display: block;
  width: 100%;
  min-height: 175.0666666667vw;
  background: url(../img/top/intro_bg_sp.webp) center center no-repeat;
  background-size: 100% auto;
  position: absolute;
  left: 0;
}

.tp_intro_inner {
  margin: 0 5.3333333333vw;
  padding: 15.2vw 0 0;
}

.tp_intro_header {
  margin-bottom: 6.6666666667vw;
}

.tp_intro_frame {
  padding: 0.9333333333vw;
  border: 0.4vw solid #000;
  border-radius: 2.6666666667vw;
  position: relative;
}

.tp_intro_frameInner {
  display: grid;
  width: 100%;
  padding: 4.6666666667vw 2.6666666667vw;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 1.7333333333vw;
}

.tp_intro_txt {
  font-family: "DotGothic16", sans-serif;
  font-size: 1.75rem;
  color: #fff;
  line-height: 1.8;
  letter-spacing: 0.1333333333vw;
}

.tp_intro_blue {
  font-size: 2.25rem;
  color: #69d1ff;
  font-weight: normal;
}

.tp_intro_yellow {
  color: #ffe65d;
  font-weight: normal;
}

/* chara
================================== */
.tp_chara {
  position: relative;
  overflow: hidden;
}

.tp_chara_inner {
  margin: 0 0 12vw;
}

.tp_chara_header {
  margin: 0 0 2.6666666667vw 5.3333333333vw;
}

.tp_chara_ttl {
  width: 68.5333333333vw;
}

/* staffcast
================================== */
.tp_stacas {
  padding-top: 10.6666666667vw;
}

.tp_stacas_inner {
  margin: 0 5.3333333333vw 5.3333333333vw;
}

.tp_stacas_header {
  margin-bottom: 9.0666666667vw;
}

/* section
================================== */
.tp_stacasSect:first-of-type {
  margin-bottom: 11.7333333333vw;
}

.tp_stacasSect_header {
  margin-bottom: 8.9333333333vw;
}

.tp_stacasSect_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8.9333333333vw 5.3333333333vw;
}

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

.tp_stacasSect_post {
  display: flex;
  gap: 0 4vw;
  margin-bottom: 0.8vw;
}

.tp_stacasSect_label {
  font-family: "DotGothic16", sans-serif;
  font-size: 1.3125rem;
  display: inline-block;
  padding: 0.8vw 1.3333333333vw 1.0666666667vw 1.8666666667vw;
  background: #00a1e9;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.1;
}

.tp_stacasSect_name {
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: 0.1333333333vw;
}

.tp_stacasSect_info {
  font-size: 1.3125rem;
  font-weight: 500;
  letter-spacing: 0.1vw;
}

/* books
================================== */
.tp_books {
  padding-top: 10.6666666667vw;
  background: url(../img/top/rainbow2.webp) center 70vw no-repeat;
  background-size: auto 136vw;
}

.tp_books_inner {
  margin: 0vw 5.3333333333vw 38vw;
  padding: 0vw 0 0;
}

.tp_books_lead {
  font-size: 2.5rem;
  margin-bottom: 6.4vw;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-align: center;
}
.tp_books_lead span {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}
.tp_books_lead b {
  color: #00a1e9;
}

/* books tab / panel
================================== */
.tp_books_tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 3.4666666667vw;
  margin-bottom: 12vw;
}

.tp_booksPanel {
  opacity: 1;
  position: relative;
  z-index: 1;
}
.tp_booksPanel[hidden] {
  display: none;
}

.tp_booksPanel_header {
  margin-bottom: 4.2666666667vw;
}

.tp_booksPanel_info {
  margin-bottom: 7.3333333333vw;
  font-weight: 500;
  line-height: 1.6;
}

.tp_booksPanel_name {
  font-size: 2rem;
  margin-bottom: 1.0666666667vw;
  letter-spacing: 0.05em;
}

.tp_booksPanel_credit {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}

.tp_booksPanel_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8.6666666667vw 6.6666666667vw;
  position: relative;
}

.tp_booksPanel_link {
  display: block;
  border: 0.2666666667vw solid #00a1e9;
  position: relative;
}
.tp_booksPanel_link::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to top, #4facfe, #00f2fe);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.2s;
}

/* =====================================
  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
================================== */
.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: #fff;
}
.hp_safari::before {
  top: -26.6666666667vw;
}
.hp_safari::after {
  bottom: -26.6666666667vw;
}

/* =====================================
  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;
}
.js_hoverImg img {
  display: block;
  width: 100%;
  height: auto;
}
.js_hoverImg .is_default,
.js_hoverImg .is_hover {
  transition: opacity 0.4s 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;
}

/*
================================== */
.js_splitTxtChar,
.js_fastTxtChar {
  display: inline-block;
  opacity: 0;
}

/* 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 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 blinkAnim {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@keyframes fadeUpAnim {
  0% {
    opacity: 0;
    transform: translate3d(0, 2em, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
/* spin
================================== */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* rotate
================================== */
@keyframes rotationY {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
@keyframes rotationX {
  0% {
    transform: rotateX(0deg);
  }
  100% {
    transform: rotateX(360deg);
  }
}
@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;
    padding-bottom: 2.7818448023vw;
  }
  body::before {
    background-image: url(../img/common/bg.jpg);
  }
  body::after {
    background-image: url(../img/common/header_bg.png);
    height: 37.6281112738vw;
  }
  ::-webkit-scrollbar {
    width: 0.2196193265vw;
  }
  .ly_contDeco {
    width: 44.289897511vw;
    background: url(../img/common/header_deco.png) left top no-repeat;
    background-size: 100%;
    top: -18.1551976574vw;
    left: -15.0073206442vw;
    z-index: 1;
  }
  .ly_contBg {
    height: 41.21522694vw;
    background: url(../img/common/footer_bg.png) right bottom no-repeat;
    background-size: 31.9912152269vw auto;
    bottom: 10.8345534407vw;
  }
  .ly_footer {
    width: 66.6178623719vw;
    min-height: 27.2327964861vw;
    margin: 0 auto 0vw 27.8184480234vw;
    padding: 12.4450951684vw 2.9282576867vw 2.4890190337vw;
    border-radius: 1.4641288433vw;
  }
  .ly_header {
    height: 100vh;
    padding-bottom: 3.6603221083vw;
    overflow-y: auto;
    pointer-events: none;
    position: fixed;
  }
  .ly_main {
    width: 66.6178623719vw;
    margin: 0 auto 12.4450951684vw 27.8184480234vw;
    padding: 6.588579795vw 0 0;
    z-index: 1;
  }
  .ly_main_header {
    margin: 0 0 3.6603221083vw;
  }
  .bl_backToTop {
    width: 16.9106881406vw;
    height: 16.9106881406vw;
    top: -8.1991215227vw;
  }
  .bl_backToTop_link {
    right: 0vw;
    transition: 0.2s;
  }
  .bl_backToTop_link:hover {
    scale: 0.9;
    opacity: 0.5;
    transition: 0.2s;
  }
  .bl_backToTop_txt {
    font-size: 1.25rem;
    margin-top: -1.2445095168vw;
    margin-left: 0.2928257687vw;
    letter-spacing: 0.2928257687vw;
  }
  .bl_backToTop_txt::before {
    height: 0.8052708638vw;
    margin-bottom: 0.3660322108vw;
    aspect-ratio: 13/11;
    left: -0.1464128843vw;
  }
  .bl_comment {
    width: 66.6178623719vw;
    margin: 0 auto;
    padding-bottom: 1.4641288433vw;
  }
  .bl_comment_prof {
    display: flex;
    justify-content: space-between;
    gap: 0 2.9282576867vw;
    align-items: flex-end;
  }
  .bl_comment_thumbFrame {
    width: 19.1800878477vw;
    height: 21.5959004392vw;
    margin-bottom: 1.9765739385vw;
    background-size: 19.1800878477vw auto;
  }
  .bl_comment_thumb {
    width: 13.9092240117vw;
    border-width: 0.0732064422vw;
  }
  .bl_comment_header {
    margin: 0 0 1.5373352855vw;
  }
  .bl_comment_label {
    min-height: 3.6603221083vw;
    margin-left: 0.878477306vw;
    margin-bottom: 0.5124450952vw;
    padding: 0 2.196193265vw;
  }
  .bl_comment_label::before {
    border: 0.1464128843vw solid #fff;
    inset: 0.2196193265vw;
  }
  .bl_comment_label span {
    font-size: 1.25rem;
    letter-spacing: 0.0732064422vw;
  }
  .bl_comment_name {
    font-size: 2.5rem;
    margin-left: 2.196193265vw;
    letter-spacing: 0.2196193265vw;
  }
  .bl_comment_frame {
    padding: 0.5124450952vw;
    border-width: 0.2196193265vw;
    border-radius: 1.4641288433vw;
  }
  .bl_comment_frameInner {
    padding: 2.0497803807vw 2.9282576867vw;
    border-radius: 0.9516837482vw;
  }
  .bl_comment_txt {
    font-size: 1.25rem;
  }
  .bl_comment_illust {
    width: 58.5651537335vw;
  }
  .bl_footerShare {
    gap: 1.4641288433vw;
    width: 3.6603221083vw;
    height: 14.6412884334vw;
    padding: 0.7320644217vw 0.5124450952vw 1.756954612vw;
    inset: 0;
    margin: auto;
    left: auto;
    right: 2.9282576867vw;
  }
  .bl_footerShare_ttl {
    width: 2.5622254758vw;
  }
  .bl_footerShare_list {
    gap: 1.4641288433vw;
  }
  .bl_footerShare_link {
    transition: 0.2s;
  }
  .bl_footerShare_link:hover {
    opacity: 0.6;
    transition: 0.2s;
  }
  .bl_footerShare_link.__x {
    width: 1.6105417277vw;
  }
  .bl_footerShare_link.__x:hover {
    background-image: url(../img/common/share_x_on.png);
  }
  .bl_footerShare_link.__fb {
    width: 1.756954612vw;
  }
  .bl_footerShare_link.__fb:hover {
    background-image: url(../img/common/share_fb_on.png);
  }
  .bl_footerShare_link.__line {
    width: 1.756954612vw;
  }
  .bl_footerShare_link.__line:hover {
    background-image: url(../img/common/share_line_on.png);
  }
  .bl_footerBnrs {
    gap: 1.1713030747vw 2.9282576867vw;
  }
  .bl_footerBnr {
    width: 19.0336749634vw;
    transition: 0.2s;
  }
  .bl_footerBnr:hover {
    opacity: 0.8;
    transition: 0.2s;
  }
  .bl_footerCopyright {
    margin-top: 2.8550512445vw;
  }
  .bl_footerCopyright small {
    font-size: 0.875rem;
  }
  .bl_gnav {
    width: 27.8184480234vw;
  }
  .bl_gnav_btn {
    display: none;
  }
  .bl_gnav_inner {
    padding: 0 0 0vw 3.6603221083vw;
  }
  .bl_gnav_logo {
    display: none;
  }
  .bl_gnav_list {
    grid-template-columns: 1;
    gap: 1.1713030747vw;
    margin-bottom: 4.0263543192vw;
  }
  .bl_gnav_link, .bl_gnav_sns a {
    font-size: 1.875rem;
    gap: 0 1.317715959vw;
    margin-left: -1.9765739385vw;
    letter-spacing: 0.439238653vw;
    filter: drop-shadow(0 0 0.0732064422vw rgb(255, 255, 255)) drop-shadow(0 0 0.1464128843vw rgb(255, 255, 255)) drop-shadow(0 0 0.1464128843vw rgb(255, 255, 255)) drop-shadow(0 0 0.1464128843vw rgb(255, 255, 255)) drop-shadow(0 0 0.1464128843vw rgb(255, 255, 255));
    transition: 0.2s;
  }
  .bl_gnav_link::before, .bl_gnav_sns a::before {
    content: "";
    display: inline-block;
    height: 0.8052708638vw;
    aspect-ratio: 11/13;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    background: #00a1e9;
    opacity: 0;
    transition: 0.2s;
  }
  .bl_gnav_link[aria-current=page]:hover, .bl_gnav_sns a[aria-current=page]:hover, .bl_gnav_link[aria-current=location]:hover, .bl_gnav_sns a[aria-current=location]:hover, .bl_gnav_link.is_current:hover, .bl_gnav_sns a.is_current:hover {
    margin-left: -1.9765739385vw;
  }
  .bl_gnav_link[aria-current=page]::before, .bl_gnav_sns a[aria-current=page]::before, .bl_gnav_link[aria-current=location]::before, .bl_gnav_sns a[aria-current=location]::before, .bl_gnav_link.is_current::before, .bl_gnav_sns a.is_current::before {
    height: 0.8052708638vw;
    margin-right: 0;
    margin-left: 1.9765739385vw;
    aspect-ratio: 11/13;
  }
  .bl_headerLogo {
    width: 23.4260614934vw;
    margin: 2.9282576867vw auto 2.5622254758vw 2.196193265vw;
  }
  .bl_headerLogo a:hover {
    opacity: 0.6;
    transition: 0.6s;
  }
  .bl_headerLogo.js_headerLogo {
    width: 62.1522693997vw;
    margin: 0;
    transition: 0.3s ease;
  }
  .bl_headerLogo.js_headerLogo.is_small {
    width: 23.4260614934vw;
    margin: 2.9282576867vw auto 2.5622254758vw 2.196193265vw;
  }
  .bl_loaderCover {
    height: 100vh;
    background-image: url(../img/common/bg.jpg);
  }
  .bl_loader_lead {
    font-size: 2.5rem;
    margin-bottom: 5.270863836vw;
  }
  .bl_loader_lead rt {
    font-size: 1.5rem;
    letter-spacing: 0.3513909224vw;
    display: block;
  }
  .bl_loader_small {
    font-size: 1.875rem;
  }
  .bl_loader_btns {
    gap: 0 2.9282576867vw;
    transform: translateY(1.4641288433vw);
  }
  .bl_loader_btn {
    font-size: 1.875rem;
    width: 15.7393850659vw;
    height: 4.39238653vw;
    border-width: 0.0732064422vw;
    border-radius: 0.7320644217vw;
  }
  .bl_loader_btn.__on::before {
    height: 1.0980966325vw;
    left: 2.4158125915vw;
  }
  .bl_modal_inner {
    width: 69.5461200586vw;
    padding: 10.980966325vw 0 7.3206442167vw;
  }
  .bl_modal::before {
    background-image: url(../img/common/bg.jpg);
    background-size: cover;
  }
  .bl_modal_close {
    width: 3.6603221083vw;
    height: 3.6603221083vw;
    border-width: 0.1464128843vw;
    background-size: 2.7818448023vw auto;
    top: 3.6603221083vw;
    right: 5.8565153734vw;
  }
  .bl_modal_close:hover {
    background: rgb(0, 0, 0) url(../img/common/btn_close_hover.png) center center no-repeat;
    background-size: 2.7818448023vw auto;
  }
  .bl_pagerList {
    gap: 0 1.2em;
    min-height: 4.5387994143vw;
    margin: 7.1010248902vw 0 0 auto;
  }
  .bl_pager_prev,
  .page-numbers.prev,
  .bl_pager_next,
  .page-numbers.next {
    font-size: 1.875rem;
    width: 15.7393850659vw;
    height: 4.39238653vw;
    margin-right: auto;
    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;
  }
  .bl_pager_prev:hover,
  .page-numbers.prev:hover,
  .bl_pager_next:hover,
  .page-numbers.next:hover {
    box-shadow: none;
    background: rgba(0, 0, 0, 0.6);
    transition: 0.2s;
  }
  .bl_pager_prev:hover::before,
  .page-numbers.prev:hover::before,
  .bl_pager_next:hover::before,
  .page-numbers.next:hover::before {
    opacity: 1;
    transition: 0.2s;
  }
  .bl_pager_prev::before,
  .page-numbers.prev::before,
  .bl_pager_next::before,
  .page-numbers.next::before {
    content: "";
    display: inline-block;
    height: 1.0980966325vw;
    aspect-ratio: 10/15;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    background: #fff;
    opacity: 0;
    position: absolute;
    inset: 0;
    margin: auto;
    left: 2.4158125915vw;
    right: auto;
    transition: 0.2s;
  }
  .page-numbers {
    font-size: 1.875rem;
    letter-spacing: 0.439238653vw;
    transition: 0.2s;
  }
  .page-numbers.dots {
    font-size: 1.5rem;
  }
  .bl_pager {
    min-height: 4.5387994143vw;
    margin: 7.3206442167vw auto 0 auto;
  }
  .bl_pager_back {
    position: absolute;
    inset: 0;
  }
  .bl_pager_backLink {
    font-size: 1.875rem;
    width: 15.7393850659vw;
    height: 4.39238653vw;
    box-shadow: inset 0 0 0 0.7320644217vw #fff, 0 0 0 0.0732064422vw #000;
    letter-spacing: 0.439238653vw;
    transition: 0.2s;
  }
  .bl_pager_backLink:hover {
    box-shadow: none;
    background: rgba(0, 0, 0, 0.6);
    transition: 0.2s;
  }
  .bl_pager_backLink:hover::before {
    opacity: 1;
    transition: 0.2s;
  }
  .bl_post_header {
    padding: 0.5124450952vw;
    margin-bottom: 2.196193265vw;
    border-width: 0.2196193265vw;
    border-radius: 1.4641288433vw;
  }
  .bl_post_headerInner {
    padding: 2.196193265vw 2.9282576867vw;
    border-radius: 0.9516837482vw;
  }
  .bl_post_date {
    font-size: 2.5rem;
    width: 24.0849194729vw;
    height: 4.39238653vw;
    background-size: cover;
    letter-spacing: 0.5856515373vw;
    top: -2.4158125915vw;
    right: 1.4641288433vw;
    transition: 0.3s;
  }
  .bl_post_ttl {
    font-size: 1.5rem;
    letter-spacing: 0.0878477306vw;
  }
  .bl_post_frame {
    font-size: 1.125rem;
    padding: 0.5124450952vw;
    border-width: 0.2196193265vw;
    border-radius: 1.4641288433vw;
  }
  .bl_post_main {
    font-size: 1rem;
    padding: 2.9282576867vw 2.9282576867vw 2.9282576867vw;
    border-radius: 0.9516837482vw;
    line-height: 1.8;
  }
  .bl_post_main p {
    margin-bottom: 1.8301610542vw;
  }
  .bl_post_main a:hover {
    text-decoration: underline;
    transition: 0.6s;
  }
  .bl_post_main figure {
    margin: 2.4890190337vw 0;
  }
  .bl_post_main figure img {
    width: auto;
    margin: 0 0 3.6603221083vw;
  }
  .bl_posts {
    gap: 5.8565153734vw 0;
    margin-top: 0.439238653vw;
  }
  .bl_posts_item:nth-child(odd) .bl_posts_link::after {
    right: 5.1244509517vw;
  }
  .bl_posts_link::after {
    width: 2.4158125915vw;
    height: 1.9765739385vw;
    background: url(../img/news/item_deco.png) center top no-repeat;
    background-size: 2.4158125915vw 1.9765739385vw;
    bottom: -1.9765739385vw;
    left: 2.9282576867vw;
    transition: 0.1s;
  }
  .bl_posts_link {
    width: 57.8330893119vw;
    height: 10.541727672vw;
    padding: 0.1464128843vw;
    border-width: 0.2196193265vw;
    border-radius: 1.8301610542vw;
    transition: 0.2s;
  }
  .bl_posts_link:hover::after {
    width: 2.4158125915vw;
    height: 2.196193265vw;
    background: url(../img/news/item_deco_hover.png) center top no-repeat;
    background-size: 2.4158125915vw 2.196193265vw;
    bottom: -1.9765739385vw;
    transition: 0.1s;
  }
  .bl_posts_link:hover .bl_posts_frame {
    background: #000;
    transition: 0.2s;
  }
  .bl_posts_link:hover .bl_posts_txt {
    color: #fff;
    transition: 0.2s;
  }
  .bl_posts_link:hover .bl_posts_date {
    color: #ffe65d;
    transition: 0.2s;
  }
  .bl_posts_link:hover .bl_posts_date::after {
    background: #ffe65d;
  }
  .bl_posts_frame {
    height: 100%;
    padding: 1.1713030747vw 2.9282576867vw;
    border: 0.2196193265vw solid #000;
    border-radius: 1.6105417277vw;
    background: #fff;
  }
  .bl_posts_date {
    font-size: 1.25rem;
    gap: 0 0.7320644217vw;
    margin-bottom: 0.439238653vw;
    background-size: 1.0248901903vw;
    transition: 0.2s;
  }
  .bl_posts_date::after {
    width: 6.2225475842vw;
    height: 0.1464128843vw;
  }
  .bl_posts_txt {
    font-size: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.7;
    transition: 0.2s;
  }
  .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.196193265vw;
    height: 1.6837481698vw;
  }
  .el_commentBtn:hover {
    opacity: 0.5;
    transition: 0.2s;
  }
  .el_lv1Heading {
    font-size: 5.625rem;
    gap: 0 2.9282576867vw;
  }
  .el_lv1Heading::before {
    height: 2.196193265vw;
  }
  .el_lv2Heading {
    font-size: 1.875rem;
    padding-bottom: 0.0732064422vw;
    border-width: 0.0732064422vw;
    letter-spacing: 0.439238653vw;
  }
  .chara_thumb {
    margin-right: 5.1244509517vw;
    margin-bottom: 1.0980966325vw;
  }
  .chara_thumb_list {
    gap: 1.4641288433vw;
  }
  .chara_thumb_item {
    width: 8.9311859444vw;
  }
  .chara_thumb_item:hover {
    transition: 0.2s;
  }
  .chara_thumb_item:hover .chara_thumb_img {
    transition: 0.2s;
  }
  .chara_thumb_item:hover .chara_thumb_name {
    transition: 0.2s;
  }
  .chara_thumb_imgWrap {
    width: 8.9311859444vw;
    height: 9.5168374817vw;
    transition: 0.2s;
  }
  .chara_thumb_img {
    transition: 0.2s;
  }
  .chara_prof {
    width: 66.6178623719vw;
  }
  .chara_name {
    min-height: 4.39238653vw;
    margin-left: 0.878477306vw;
    padding: 0 2.196193265vw;
  }
  .chara_name::before {
    border: 0.2928257687vw solid #fff;
    inset: 0.2196193265vw;
  }
  .chara_name span {
    font-size: 1.875rem;
    letter-spacing: 0.1098096633vw;
  }
  .chara_frame {
    margin-top: -1.2445095168vw;
    padding: 0.5124450952vw;
    border-width: 0.2196193265vw;
    border-radius: 1.4641288433vw;
  }
  .chara_frame_inner {
    padding: 2.635431918vw 2.9282576867vw 2.1229868228vw;
    border-radius: 0.9516837482vw;
  }
  .chara_desc {
    width: 29.2825768668vw;
  }
  .chara_desc.__01 {
    width: 38.0673499268vw;
  }
  .chara_cv {
    font-size: 1rem;
    margin-bottom: 0.3660322108vw;
  }
  .chara_txt {
    font-size: 1.25rem;
    line-height: 1.8;
  }
  .chara_face {
    width: 35.505124451vw;
    height: 35.505124451vw;
    margin-bottom: 0.7320644217vw;
    position: relative;
    left: 2.196193265vw;
  }
  .chara_face_img {
    width: 35.505124451vw;
    height: 35.505124451vw;
  }
  .chara_stand {
    width: 36.0907759883vw;
    height: 62.2254758419vw;
    position: absolute;
    top: 0;
    right: 1.4641288433vw;
    left: auto;
  }
  .tp_hero {
    text-align: right;
  }
  .tp_hero_onairSub {
    width: 37.4084919473vw;
    position: absolute;
    top: 3.3674963397vw;
    right: 1.2445095168vw;
    z-index: 1;
  }
  .tp_hero_kv {
    width: 71.7423133236vw;
    margin-left: auto;
  }
  .tp_hero_onair {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 27.8184480234vw;
    background: url(../img/top/onair_bg.webp) right top no-repeat;
    background-size: cover;
  }
  .tp_hero_onairImg {
    width: 69.3265007321vw;
    margin-right: 1.9033674963vw;
  }
  .tp_news {
    min-height: 75.4026354319vw;
    margin-bottom: 0;
    background-position: 25.2562225476vw 0.5124450952vw;
    background-size: 74.6705710102vw auto;
  }
  .tp_news_inner {
    width: 66.6178623719vw;
    margin: 0 auto 0 27.8184480234vw;
    padding: 6.588579795vw 0 0;
  }
  .tp_news_header {
    margin-bottom: 4.0263543192vw;
  }
  .tp_news_btnWrap {
    margin: 4.5387994143vw auto 0;
  }
  .tp_intro {
    margin-top: -2.7818448023vw;
  }
  .tp_intro::before {
    min-height: 69.1800878477vw;
    background: url(../img/top/intro_bg.webp) left top no-repeat;
    background-size: 100% auto;
    top: -6.6617862372vw;
  }
  .tp_intro_inner {
    width: 66.6178623719vw;
    margin: 0 auto 4.0263543192vw 27.8184480234vw;
    padding: 6.588579795vw 0 0;
  }
  .tp_intro_header {
    margin-bottom: 3.6603221083vw;
  }
  .tp_intro_frame {
    padding: 0.5124450952vw;
    border-width: 0.2196193265vw;
    border-radius: 1.4641288433vw;
  }
  .tp_intro_frameInner {
    padding: 1.5373352855vw 2.9282576867vw 2.1229868228vw;
    border-radius: 0.9516837482vw;
  }
  .tp_intro_txt {
    font-size: 1.5rem;
    line-height: 1.75;
    letter-spacing: 0.1098096633vw;
  }
  .tp_intro_blue {
    font-size: 1.875rem;
  }
  .tp_chara::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    width: 40.1171303075vw;
    height: 42.972181552vw;
    background: url(../img/top/chara_deco.webp) right top no-repeat;
    background-size: 100% auto;
  }
  .tp_chara_inner {
    margin: 0 auto 3.6603221083vw 27.8184480234vw;
    padding: 5.6368960469vw 0 0;
  }
  .tp_chara_header {
    margin: 0 0 2.196193265vw;
  }
  .tp_chara_ttl {
    width: 30.1610541728vw;
  }
  .tp_stacas {
    padding-top: 5.1244509517vw;
  }
  .tp_stacas_inner {
    width: 66.6178623719vw;
    margin: 0 auto 3.2942898975vw 27.8184480234vw;
  }
  .tp_stacas_header {
    margin-bottom: 3.0014641288vw;
  }
  .tp_stacasSect:first-of-type {
    margin-bottom: 6.2225475842vw;
  }
  .tp_stacasSect_header {
    margin-bottom: 3.6603221083vw;
  }
  .tp_stacasSect_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 3.2942898975vw 3.6603221083vw;
    margin: 0 3.6603221083vw;
  }
  .tp_stacasSect_item.__full {
    grid-column: span 2;
    justify-self: center;
    width: auto;
  }
  .tp_stacasSect_post {
    gap: 0 1.4641288433vw;
    margin-bottom: 0.1464128843vw;
  }
  .tp_stacasSect_label {
    font-size: 0.875rem;
    padding: 0.2928257687vw 0.439238653vw 0.439238653vw 0.7320644217vw;
    line-height: 1;
    letter-spacing: 0.2em;
  }
  .tp_stacasSect_body {
    display: flex;
    gap: 0 1em;
  }
  .tp_stacasSect_name {
    font-size: 1.5rem;
    letter-spacing: 0.0878477306vw;
  }
  .tp_stacasSect_info {
    font-size: 0.875rem;
    letter-spacing: 0.0439238653vw;
  }
  .tp_books {
    min-height: 75.4026354319vw;
    margin-bottom: 0;
    padding-top: 5.1244509517vw;
    background-position: 25.2562225476vw 5.1244509517vw;
    background-size: 74.6705710102vw auto;
  }
  .tp_books_inner {
    width: 66.6178623719vw;
    margin: 0 auto 12.4450951684vw 27.8184480234vw;
    padding: 0vw 0 0;
  }
  .tp_books_header {
    margin: 0 0 2.4890190337vw;
  }
  .tp_books_lead {
    font-size: 2.5rem;
    margin-bottom: 3.1478770132vw;
  }
  .tp_books_lead span {
    font-size: 1.25rem;
  }
  .tp_books_tabs {
    gap: 0 3.6603221083vw;
    margin-bottom: 2.3426061493vw;
  }
  .tp_booksPanel_header {
    margin-bottom: 1.4641288433vw;
  }
  .tp_booksPanel_info {
    margin-bottom: 2.4890190337vw;
  }
  .tp_booksPanel_name {
    font-size: 1.25rem;
    margin-bottom: 0.3660322108vw;
  }
  .tp_booksPanel_credit {
    font-size: 1rem;
  }
  .tp_booksPanel_list {
    grid-template-columns: repeat(3, 1fr);
    gap: 3.6603221083vw 2.196193265vw;
  }
  .tp_booksPanel_link {
    border-width: 0.0732064422vw;
  }
  .tp_booksPanel_link:hover::after {
    opacity: 0.5;
    transition: 0.2s;
  }
}
@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;
  }
  body {
    padding-top: 13.3333333333vw;
    padding-bottom: 10vw;
    background-color: #fff;
  }
  .bl_comment_prof {
    height: 59.8666666667vw;
    margin-bottom: 5.3333333333vw;
  }
  .bl_comment_thumbFrame {
    position: absolute;
    right: 0;
    bottom: 0;
  }
  .bl_footerShare {
    top: 14.5333333333vw;
  }
  .bl_gnav {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
  }
  .bl_gnav_body {
    width: 100%;
    height: 100dvh;
    background: url(../img/common/nav_bg.png) right bottom no-repeat, url(../img/common/bg_sp.jpg) left top no-repeat;
    background-size: 54.8vw 49.0666666667vw, cover;
    overflow-y: auto;
    position: fixed;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0s linear 0.35s;
  }
  .bl_gnav_body::before, .bl_gnav_body::after {
    content: "";
    display: block;
  }
  .bl_gnav_body::after {
    width: 100%;
    height: 68.6666666667vw;
    background: url(../img/common/header_bg.png) left top no-repeat;
    background-size: auto 68.6666666667vw;
    position: absolute;
    top: 0;
    left: 0;
  }
  .bl_gnav_body::before {
    width: 80.6666666667vw;
    background: url(../img/common/header_deco.png) left top no-repeat;
    background-size: 100%;
    aspect-ratio: 1/1;
    position: absolute;
    top: -33.0666666667vw;
    left: -27.3333333333vw;
    z-index: 1;
    animation: spin 54s linear infinite;
  }
  .js_navOpen {
    position: fixed;
    width: 100%;
  }
  .js_navOpen .bl_gnav_body {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.35s ease;
  }
  .bl_gnav_inner {
    min-height: 177.8666666667vw;
    width: 100%;
    height: 100%;
    margin: 0;
    position: relative;
    top: 0;
    z-index: 1;
    overflow: hidden;
  }
  .bl_gnav_list {
    margin: 0vw 5.3333333333vw 10vw;
  }
  .bl_gnav_sns {
    margin-left: 5.3333333333vw;
  }
  .bl_headerLogo {
    display: none;
  }
  .bl_headerLogo.js_headerLogo {
    display: block;
    width: 80.2666666667vw;
    margin: 4.8vw auto 0;
  }
  .bl_pager_prev,
  .page-numbers.prev,
  .bl_pager_next,
  .page-numbers.next {
    z-index: 1;
  }
  .bl_pager_prev,
  .page-numbers.prev {
    top: 12.6666666667vw;
    z-index: 1;
  }
  .bl_pager_next,
  .page-numbers.next {
    top: 12.6666666667vw;
    z-index: 1;
  }
  .bl_pager_detail li.__prev {
    margin-right: auto;
  }
  .bl_pager_detail li.__next {
    margin-left: auto;
  }
  .bl_pager_prev,
  .bl_pager_next {
    position: absolute;
    top: 17.8666666667vw;
  }
  .bl_pager_back {
    width: 100%;
  }
  .bl_post_main figure img {
    width: 100%;
  }
  .bl_posts {
    width: 87.7333333333vw;
    margin: 0 auto;
  }
  .chara_thumb {
    margin: 0 4vw 1.3333333333vw;
  }
  .chara_prof {
    margin: -3.6vw 5.3333333333vw 0;
  }
  .chara_face {
    position: absolute;
  }
  .chara_stand {
    margin: 0vw -3.3333333333vw 0 auto;
    top: 1.2vw;
  }
  .tp_hero {
    margin: 0vw 0vw 0;
  }
  .tp_hero_onairSub {
    display: none;
  }
  .tp_hero_onair {
    padding: 1.0666666667vw 0 0 0.2666666667vw;
  }
  .tp_news {
    margin-bottom: 7.2vw;
  }
  .tp_news_btnWrap {
    margin-top: 16.8vw;
  }
  .tp_intro {
    margin-bottom: 33.8666666667vw;
  }
  .tp_chara {
    padding-top: 10.6666666667vw;
    background: url(../img/top/chara_bg2_sp.webp) left 98.6666666667vw no-repeat;
    background-size: 49.7333333333vw auto;
  }
  .tp_chara_inner {
    position: relative;
    z-index: 1;
  }
  .tp_chara_bg {
    display: block;
    width: 68.5333333333vw;
    height: 75.0666666667vw;
    background: url(../img/top/chara_bg1_sp.webp) right top no-repeat;
    background-size: 68.5333333333vw auto;
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    z-index: 1;
  }
  .tp_stacasSect_item.__full .tp_stacasSect_info {
    display: inline-block;
  }
  .tp_stacasSect_name {
    margin-bottom: 0.2666666667vw;
    line-height: 1.3;
  }
  .tp_stacasSect_info {
    display: block;
    margin-top: 0.6666666667vw;
  }
  .tp_books {
    margin-bottom: 7.2vw;
  }
  .tp_books_header {
    margin-bottom: 8.5333333333vw;
  }
  .tp_books_lead {
    line-height: 1.7;
  }
}
@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, .bl_gnav_sns a:where(:-moz-any-link, :enabled, summary):hover {
    margin-left: 0;
    color: #00a1e9;
    -moz-transition: 0.2s;
    transition: 0.2s;
  }
  .bl_gnav_link:where(:any-link, :enabled, summary):hover, .bl_gnav_sns a:where(:any-link, :enabled, summary):hover {
    margin-left: 0;
    color: #00a1e9;
    transition: 0.2s;
  }
  .bl_gnav_link:where(:-moz-any-link, :enabled, summary):hover::before, .bl_gnav_sns a: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, .bl_gnav_sns a: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 {
    content: "";
    display: inline-block;
    height: 1.0980966325vw;
    aspect-ratio: 10/15;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    background: #fff;
    opacity: 0;
    position: absolute;
    inset: 0;
    margin: auto;
    left: 2.4158125915vw;
    right: auto;
    transition: 0.2s;
  }
}
