@charset "UTF-8";
/* ボックスモデルをリセットし、ボーダーを設定 */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box; /* パディングとボーダーを要素の合計幅と高さに含める */
  border-style: solid; /* ボーダーのスタイルを実線に設定 */
  border-width: 0; /* ボーダーの幅を0に設定 */
  min-width: 0; /* 最小幅を0に設定 */
}

/* ドキュメント */
/* ============================================ */
/**
 * 1. 全てのブラウザでline-heightを調整
 * 2. iOSでの方向変更後のフォントサイズ調整を抑制
 * 3. iOSでのリンクのグレーのハイライト表示を削除
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent; /* 3 */
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 禁則処理を厳格に適用 */
}

/* セクション */
/* ============================================ */
/**
 * 全てのブラウザでmarginを削除
 */
body {
  margin: 0;
}

/**
 * IEでのmain要素の表示を一貫させる
 */
main {
  display: block;
}

/* 垂直方向の余白 */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* 見出し */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit; /* フォントサイズを親から継承 */
  font-weight: inherit; /* フォントウェイトを親から継承 */
  margin: 0; /* マージンを削除 */
}

[tabindex="-1"]:focus-visible {
  outline: none !important; /* tabindex="-1"でフォーカス可能になった要素のアウトラインを削除 */
}

/* リスト（列挙） */
/* ============================================ */
ul,
ol {
  margin: 0; /* マージンを削除 */
  padding: 0; /* パディングを削除 */
  list-style: none; /* リストのスタイルを削除 */
}

/* リスト（定義） */
/* ============================================ */
dd {
  margin-left: 0; /* 左マージンを削除 */
}

/* グループ化されたコンテンツ */
/* ============================================ */
/**
 * 1. Firefoxで正しいボックスサイジングを追加
 * 2. EdgeとIEでoverflowを表示
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px; /* 上ボーダーの幅を設定 */
  margin: 0; /* マージンを削除 */
  clear: both; /* 両側のフロートをクリア */
  color: inherit; /* 色を親から継承 */
}

/**
 * 1. 全てのブラウザでフォントサイズの継承とスケーリングを調整
 * 2. 全てのブラウザで"em"フォントサイジングを調整
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit; /* フォントスタイルを親から継承 */
}

/* テキストレベルの意味付け要素 */
/* ============================================ */
/**
 * IE 10以上でアクティブなリンクのグレーの背景を削除
 */
a {
  background-color: transparent; /* 背景色を透明に設定 */
  text-decoration: none; /* テキスト装飾を削除 */
  color: inherit; /* 色を親から継承 */
}

/**
 * 1. Chrome 57-で下ボーダーを削除
 * 2. Chrome, Edge, IE, Opera, Safariで正しいテキスト装飾を追加
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2: 点線のアンダーラインを追加 */
}

/**
 * Chrome, Edge, Safariで正しいフォントウェイトを追加
 */
b,
strong {
  font-weight: 700; /* フォントウェイトを太字に設定 */
}

u {
  text-underline-offset: 0.2em;
}

em {
  font-style: italic;
}

/**
 * 1. 全てのブラウザでフォントサイズの継承とスケーリングを調整
 * 2. 全てのブラウザで"em"フォントサイジングを調整
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * "small"のフォントサイズを追加
 * 取り消し線のために"del"を追加
 */
small {
  font-size: inherit;
}

del {
  text-decoration: line-through;
}

/**
 * "sub"と"sup"を垂直方向に揃える
 */
sub {
  vertical-align: bottom;
  font-size: 72%;
}

sup {
  vertical-align: top;
  font-size: 72%;
}

/* 置換コンテンツ */
/* ============================================ */
/**
 * 垂直方向の配置問題を防止
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: middle; /* 垂直方向中央揃え */
}

/* フォーム */
/* ============================================ */
/**
 * フォームフィールドをスタイル可能にするためにリセット
 * 1. 特にiOSで、システム全体でフォーム要素をスタイル可能にする
 * 2. 親からtext-transformを継承する
 */
button,
input,
optgroup,
select,
textarea {
  vertical-align: middle; /* 垂直方向中央揃え */
  color: inherit; /* 色を親から継承 */
  font: inherit; /* フォントを親から継承 */
  background: none; /* 背景を削除 */
  border: none; /* ボーダーを削除 */
  padding: 0; /* パディングを削除 */
  margin: 0; /* マージンを削除 */
  border-radius: 0; /* ボーダーの角丸を削除 */
  text-align: inherit; /* テキストの配置を親から継承 */
  text-transform: inherit; /* 2 */
  white-space: normal; /* ホワイトスペースを標準に設定 */
}

button {
  outline: none; /* アウトラインを削除 */
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; /* ネイティブの外観を削除 */
}

/**
 * クリック可能な要素のカーソルを調整
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer; /* カーソルをポインターに設定 */
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default; /* 無効な要素のカーソルをデフォルトに設定 */
}

/**
 * Firefoxのアウトラインを改善し、入力要素やボタンのスタイルと統一
 */
:-moz-focusring {
  outline: auto; /* Firefoxのフォーカスリングを自動に設定 */
}

select:disabled {
  opacity: inherit; /* 無効なselect要素の透明度を継承 */
}

/**
 * パディングを削除
 */
option {
  padding: 0;
}

/**
 * fieldsetを非表示にリセット
 */
fieldset {
  margin: 0; /* マージンを削除 */
  padding: 0; /* パディングを削除 */
  min-width: 0; /* 最小幅を0に設定 */
}

legend {
  padding: 0; /* パディングを削除 */
}

/**
 * Chrome, Firefox, Operaで正しい垂直方向の配置を追加
 */
progress {
  vertical-align: baseline; /* 垂直方向をベースラインに設定 */
}

/**
 * IE 10以上でデフォルトの垂直スクロールバーを削除
 */
textarea {
  overflow: auto; /* テキストエリアのオーバーフローを自動に設定 */
}

/**
 * Chromeでインクリメント/デクリメントボタンのカーソルスタイルを調整
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto; /* 高さ自動 */
}

/**
 * Safariでアウトラインスタイルを調整
 */
[type=search] {
  outline-offset: -2px; /* 1: アウトラインオフセットを調整 */
}

/**
 * macOSのChromeとSafariで内部パディングを削除
 */
[type=submit] {
  -webkit-appearance: none; /* ネイティブの外観を削除 */
  border-radius: 0; /* ボーダーの角丸を削除 */
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none; /* 検索フィールドの装飾を削除 */
}

/**
 * 1. iOSとSafariでクリック可能な型のスタイル設定不能を修正
 * 2. フォントの継承を修正
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Firefoxの外観を修正
 */
[type=number] {
  -moz-appearance: textfield; /* Firefoxでナンバー入力フィールドの外観をテキストフィールドに設定 */
}

/**
 * クリック可能なラベル
 */
label[for] {
  cursor: pointer; /* for属性を持つラベルのカーソルをポインターに設定 */
}

/* インタラクティブ要素 */
/* ============================================ */
/*
 * Edge, IE 10+, Firefoxで正しいdisplayを追加
 */
details {
  display: block; /* details要素をブロックレベル要素として表示 */
}

/*
 * 全てのブラウザで正しいdisplayを追加
 */
summary {
  display: list-item; /* summary要素をリストアイテムとして表示 */
}

/*
 * 編集可能なコンテンツのアウトラインを削除
 */
[contenteditable]:focus {
  outline: auto; /* contenteditable要素のフォーカス時にアウトラインを自動表示 */
}

/* テーブル */
/* ============================================ */
/**
 * 1. ChromeとSafariでテーブルのボーダー色の継承を修正
 */
table {
  width: 100%;
  border-color: inherit; /* 1 */
  border-collapse: collapse; /* ボーダーを結合 */
}

caption {
  text-align: left; /* キャプションを左揃え */
}

td,
th {
  vertical-align: top; /* 垂直方向を上揃え */
  padding: 0; /* パディングを削除 */
}

th {
  text-align: left; /* テキストを左揃え */
  font-weight: 700; /* フォントウェイトを太字に設定 */
}

/* Firefox: ネストされた順序付きリストが親から番号付けを続ける問題を解決 */
ol {
  counter-reset: revert; /* カウンターをリセットして、リストの番号付けをデフォルトの動作に戻す */
}

/* 画像がコンテナを超えないように */
img {
  max-inline-size: 100%; /* インライン方向（幅）の最大サイズを100%に設定 */
  max-block-size: 100%; /* ブロック方向（高さ）の最大サイズを100%に設定 */
}

/* Safari: <body>に`user-select:none`が設定されている場合にテキスト入力が機能しない問題を解決 */
input, textarea {
  -webkit-user-select: auto; /* Safariでユーザー選択を自動に設定 */
}

/* Safariのtextarea要素の'white-space'プロパティを元に戻す */
textarea {
  white-space: revert; /* white-spaceプロパティをデフォルトの動作に戻す */
}

/* meter要素をスタイル可能にするための最小限のスタイル */
meter {
  -webkit-appearance: revert; /* Webkitブラウザでのネイティブの外観を元に戻す */
  -moz-appearance: revert;
       appearance: revert; /* ネイティブの外観を元に戻す */
}

/* inputplaceholderのデフォルトのテキスト不透明度をリセット */
::-moz-placeholder {
  color: unset; /* 色を未設定状態（継承またはデフォルト）にする */
}
::placeholder {
  color: unset; /* 色を未設定状態（継承またはデフォルト）にする */
}

/* 'hidden'属性の機能を修正。
  display:revert; は属性値ではなく要素のデフォルト表示に戻します。
  :where()は特異度を下げるためにここで使用されていますが、[hidden]のデフォルトはdisplay: none;です。 */
:where([hidden]) {
  display: none; /* hidden属性を持つ要素を非表示にする */
}

/* Chromiumブラウザのバグに対するリセット
  - contenteditable属性が正しく機能するように修正。
  - webkit-user-select: auto; は、ラッパー要素でuser-select:noneを使用している場合にSafari用に追加 */
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write; /* Firefoxでコンテンツ編集を許可 */
  -webkit-user-modify: read-write; /* Webkitブラウザでコンテンツ編集を許可 */
  overflow-wrap: break-word; /* 長い単語を任意の場所で折り返す */
  -webkit-line-break: after-white-space; /* Safariでホワイトスペース後の改行を許可 */
  -webkit-user-select: auto; /* Webkitブラウザでユーザー選択を自動に設定 */
}

/* ドラッグ機能を再度適用 - ChromiumとSafariにのみ存在する */
:where([draggable=true]) {
  -webkit-user-drag: element; /* Webkitブラウザで要素のドラッグを許可 */
}

/* Modalのネイティブな挙動をリセット */
:where(dialog:modal) {
  all: revert; /* 全てのプロパティを元に戻す */
  box-sizing: border-box; /* ボックスサイジングをボーダーボックスに設定 */
}

/* Safariのdetails summaryの三角形アイコンを削除 */
::-webkit-details-marker {
  display: none;
}

/* color */
/* ============================================ */
/* font */
/* ============================================ */
/* 共通部分 */
/* ============================================ */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: clamp(0.875rem, 0.5066rem + 0.6579vw, 1rem);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #fff;
  min-height: 100vh;
}
body.--fixed {
  height: 100%;
  overflow: hidden;
}

a {
  color: currentColor;
  transition: all 0.3s ease-out;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

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

.reading {
  display: block;
  overflow: hidden;
  height: 0;
  width: 0;
  margin: 0;
  padding: 0;
}

@media all and (max-width: 896px) {
  .pconly {
    display: none;
  }
}

.sponly {
  display: none;
}
@media all and (max-width: 896px) {
  .sponly {
    display: block;
  }
}

.portraitonly {
  display: none;
}
@media all and (max-width: 480px) {
  .portraitonly {
    display: block;
  }
}

@media all and (max-width: 480px) {
  .portraitnone {
    display: none;
  }
}

.tabonly {
  display: none;
}
@media all and (max-width: 1025px) {
  .tabonly {
    display: block;
  }
}

@media all and (max-width: 1025px) {
  .tabnone {
    display: none;
  }
}

.mdonly {
  display: none;
}
@media all and (max-width: 600px) {
  .mdonly {
    display: block;
  }
}

@media all and (max-width: 600px) {
  .mdnone {
    display: none;
  }
}

.span_br {
  display: inline-block;
}

.mt0 {
  margin-top: 0 !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mt16 {
  margin-top: 16px !important;
}

.mb16 {
  margin-bottom: 16px !important;
}

.mt24 {
  margin-top: 24px !important;
}

.mb24 {
  margin-bottom: 24px !important;
}

.mt32 {
  margin-top: 32px !important;
}

.mb32 {
  margin-bottom: 32px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mt48 {
  margin-top: 48px !important;
}

.mb48 {
  margin-bottom: 48px !important;
}

.mt56 {
  margin-top: 56px !important;
}

.mb56 {
  margin-bottom: 56px !important;
}

.mt64 {
  margin-top: 64px !important;
}

.mb64 {
  margin-bottom: 64px !important;
}

.mt72 {
  margin-top: 72px !important;
}

.mb72 {
  margin-bottom: 72px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mt88 {
  margin-top: 88px !important;
}

.mb88 {
  margin-bottom: 88px !important;
}

.mt96 {
  margin-top: 96px !important;
}

.mb96 {
  margin-bottom: 96px !important;
}

.mt104 {
  margin-top: 104px !important;
}

.mb104 {
  margin-bottom: 104px !important;
}

.mt112 {
  margin-top: 112px !important;
}

.mb112 {
  margin-bottom: 112px !important;
}

.mt120 {
  margin-top: 120px !important;
}

.mb120 {
  margin-bottom: 120px !important;
}

@media all and (max-width: 896px) {
  .mt0-s {
    margin-top: 0 !important;
  }
  .mt5-s {
    margin-top: 5px !important;
  }
  .mt10-s {
    margin-top: 10px !important;
  }
  .mb0-s {
    margin-bottom: 0 !important;
  }
  .mb5-s {
    margin-bottom: 5px !important;
  }
  .mb10-s {
    margin-bottom: 10px !important;
  }
  .mt16-s {
    margin-top: 16px !important;
  }
  .mb16-s {
    margin-bottom: 16px !important;
  }
  .mt24-s {
    margin-top: 24px !important;
  }
  .mb24-s {
    margin-bottom: 24px !important;
  }
  .mt32-s {
    margin-top: 32px !important;
  }
  .mb32-s {
    margin-bottom: 32px !important;
  }
  .mt40-s {
    margin-top: 40px !important;
  }
  .mb40-s {
    margin-bottom: 40px !important;
  }
  .mt48-s {
    margin-top: 48px !important;
  }
  .mb48-s {
    margin-bottom: 48px !important;
  }
  .mt56-s {
    margin-top: 56px !important;
  }
  .mb56-s {
    margin-bottom: 56px !important;
  }
  .mt64-s {
    margin-top: 64px !important;
  }
  .mb64-s {
    margin-bottom: 64px !important;
  }
  .mt72-s {
    margin-top: 72px !important;
  }
  .mb72-s {
    margin-bottom: 72px !important;
  }
  .mt80-s {
    margin-top: 80px !important;
  }
  .mb80-s {
    margin-bottom: 80px !important;
  }
  .mt88-s {
    margin-top: 88px !important;
  }
  .mb88-s {
    margin-bottom: 88px !important;
  }
  .mt96-s {
    margin-top: 96px !important;
  }
  .mb96-s {
    margin-bottom: 96px !important;
  }
  .mt104-s {
    margin-top: 104px !important;
  }
  .mb104-s {
    margin-bottom: 104px !important;
  }
  .mt112-s {
    margin-top: 112px !important;
  }
  .mb112-s {
    margin-bottom: 112px !important;
  }
  .mt120-s {
    margin-top: 120px !important;
  }
  .mb120-s {
    margin-bottom: 120px !important;
  }
}
.width {
  container-type: inline-size;
  max-width: 1200px;
  width: calc(100% - 40px);
  margin: 0 auto;
}

.outer {
  overflow: clip;
}

/* 動き */
/* ============================================ */
.moveTop {
  opacity: 0;
  transition: 0.5s;
  transform: translate(0, 80px);
}
.moveTop.current {
  opacity: 1;
  transform: translate(0, 0);
}

.moveNone {
  opacity: 0;
  transition: 0.5s;
}
.moveNone.current {
  opacity: 1;
  transform: translate(0, 0);
}

.moveRight {
  opacity: 0;
  transition: 0.5s;
  transform: translate(-80px, 0);
}
.moveRight.current {
  opacity: 1;
  transform: translate(0, 0);
}

.moveLeft {
  opacity: 0;
  transition: 0.5s;
  transform: translate(80px, 0);
}
.moveLeft.current {
  opacity: 1;
  transform: translate(0, 0);
}

/* blockskip */
/* ============================================ */
#blockskip {
  overflow: hidden;
  height: 0;
  background: #ddd;
  text-align: center;
}

/* footer */
/* ============================================ */
.footer {
  padding: 88px 0;
  background: linear-gradient(90deg, #0d2132 0%, #183c5d 50%, #0d2132 100%);
  position: -webkit-sticky;
  position: sticky;
  top: 100dvh;
  z-index: 200;
}
@media all and (max-width: 896px) {
  .footer {
    padding: 48px 0;
  }
}
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px 40px;
}
@media all and (max-width: 896px) {
  .footer-container {
    flex-direction: column;
  }
}
.footer-left {
  flex: 1;
}
.footer-logo {
  text-align: center;
}
.footer-logo img {
  width: 25.25cqw;
}
@media all and (max-width: 896px) {
  .footer-logo img {
    width: 220px;
  }
}
.footer-sns {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}
.footer-sns img {
  width: 54px;
}
@media all and (max-width: 896px) {
  .footer-sns img {
    width: 40px;
  }
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal__container {
  width: 100%;
  max-width: 640px;
  max-height: 100vh;
  overflow-y: auto;
  box-sizing: border-box;
}
@media all and (max-width: 896px) {
  .modal__container {
    max-width: 500px;
  }
}

.modal__content {
  margin: 20px 16px;
}

.modal-movie__container {
  max-width: 1000px;
}
.modal-movie__contents {
  padding: 42px 0;
}
@media all and (max-width: 896px) {
  .modal-movie__contents {
    padding: 32px 0;
  }
}
.modal-movie__main {
  position: relative;
}
.modal-movie__close {
  width: 42px;
  height: 42px;
  border: none;
  position: absolute;
  top: -42px;
  right: 0;
}
@media all and (max-width: 896px) {
  .modal-movie__close {
    width: 32px;
    height: 32px;
    top: -32px;
  }
}
.modal-movie__close > span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  position: absolute;
  inset: 0;
  margin: auto;
}
@media all and (max-width: 896px) {
  .modal-movie__close > span {
    width: 16px;
  }
}
.modal-movie__close > span:nth-of-type(1) {
  translate: 0 0;
  rotate: 45deg;
}
.modal-movie__close > span:nth-of-type(2) {
  translate: 0 0;
  rotate: -45deg;
}
.modal-movie__block iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
}

/**************************\
  Demo Animation Style
\**************************/
@-webkit-keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@-webkit-keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  -webkit-animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  -webkit-animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  -webkit-animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  -webkit-animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

.lp-visual {
  background: radial-gradient(#0b355b, #071a2b);
  position: relative;
}
.lp-visual__slide {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.lp-visual__slide .splide__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lp-visual__people {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.lp-visual__people img {
  width: 100%;
  max-width: none;
}
.lp-visual__wrapper {
  padding: 19.79vw 0 48px;
}
@media all and (max-width: 896px) {
  .lp-visual__wrapper {
    padding: 15.63vw 0 4.46vw;
  }
}
.lp-visual__container {
  text-align: center;
  position: relative;
  z-index: 20;
}
.lp-visual__ttl img {
  width: min(38.7vw, 743px);
}
@media all and (max-width: 896px) {
  .lp-visual__ttl img {
    width: 340px;
  }
}
.lp-visual__block {
  margin-top: 9.375vw;
}
@media all and (max-width: 896px) {
  .lp-visual__block {
    margin-top: 8.93vw;
  }
}
.lp-visual__txt {
  font-size: clamp(1.375rem, -0.0987rem + 2.6316vw, 1.875rem);
  line-height: 1.4;
}
.lp-visual__catch {
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 300;
  font-size: clamp(2rem, -3.1579rem + 9.2105vw, 3.75rem);
  line-height: 1.2;
  letter-spacing: 0.1em;
  margin-top: 20px;
}
@media all and (max-width: 896px) {
  .lp-visual__catch {
    margin-top: 16px;
  }
}
.lp-visual__arrow {
  margin-top: 32px;
  cursor: pointer;
  -webkit-animation: arrowMove 1.5s linear infinite;
          animation: arrowMove 1.5s linear infinite;
}
@media all and (max-width: 896px) {
  .lp-visual__arrow {
    margin-top: 24px;
  }
}
.lp-visual__arrow img {
  width: 60px;
}
@media all and (max-width: 896px) {
  .lp-visual__arrow img {
    width: 34px;
  }
}
@-webkit-keyframes arrowMove {
  0% {
    translate: 0 0;
  }
  50% {
    translate: 0 8px;
  }
  100% {
    translate: 0 0;
  }
}
@keyframes arrowMove {
  0% {
    translate: 0 0;
  }
  50% {
    translate: 0 8px;
  }
  100% {
    translate: 0 0;
  }
}

.lp-main {
  background: url("../images/main_bg.png") top -100px center/140% auto repeat-y, #000;
  padding-top: clamp(5rem, -13.4211rem + 32.8947vw, 11.25rem);
  padding-bottom: clamp(12.5rem, -24.3421rem + 65.7895vw, 25rem);
  position: relative;
}
@media all and (max-width: 896px) {
  .lp-main {
    background: url("../images/main_bg.png") top -50px center/140% auto repeat-y, #000;
  }
}
.lp-main__catch {
  word-break: keep-all;
  text-align: center;
  font-size: clamp(1rem, -0.8421rem + 3.2895vw, 1.625rem);
  font-weight: 300;
  line-height: 2.5;
  letter-spacing: 0.1em;
}
.lp-main__container {
  margin-top: clamp(4rem, -11.4737rem + 27.6316vw, 9.25rem);
}
.lp-main__inner {
  margin-top: clamp(4.5rem, -11.7105rem + 28.9474vw, 10rem);
}
.lp-main__ttl {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}
@media all and (max-width: 896px) {
  .lp-main__ttl {
    gap: 12px;
    margin-bottom: 20px;
  }
}
.lp-main__ttl .txt_number {
  flex-shrink: 0;
  display: block;
  font-size: clamp(2.25rem, -2.1711rem + 7.8947vw, 3.75rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.1em;
}
.lp-main__ttl .txt_en {
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.lp-main__ttl .txt_jp {
  display: block;
  font-size: clamp(1.25rem, -0.5921rem + 3.2895vw, 1.875rem);
  font-weight: 500;
  line-height: 1.4;
  margin-top: 1.5cqw;
}
@media all and (max-width: 896px) {
  .lp-main__ttl .txt_jp {
    margin-top: 10px;
  }
}
.lp-main__link {
  display: block;
  cursor: pointer;
  border: 2.5cqw solid #002a4a;
  position: relative;
}
@media all and (max-width: 896px) {
  .lp-main__link {
    border-width: 3.13cqw;
  }
}
.lp-main__link::after {
  content: "";
  width: 12.5cqw;
  height: 12.5cqw;
  background: url("../images/btn_movie.svg") center center/100% auto no-repeat;
  filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.9));
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 20;
}
.lp-main__link.--soon {
  cursor: auto;
}
.lp-main__link.--soon::after {
  content: none;
}
.lp-main__thumbnail {
  position: relative;
}
.lp-main__thumbnail::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #999;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
}
.lp-main__soon {
  width: 92%;
  max-width: 580px;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 50;
}

.lp-count {
  text-align: center;
  container-type: inline-size;
  margin-top: 20px;
}
@media all and (max-width: 896px) {
  .lp-count {
    margin-top: 12px;
  }
}
.lp-count__contents {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6.55cqw;
}
.lp-count__block {
  position: relative;
}
.lp-count__block::after {
  content: "";
  display: inline-block;
  width: 1.21cqw;
  height: 7.93cqw;
  background: url("../images/dot.svg") center center/100% auto no-repeat;
  white-space: nowrap;
  position: absolute;
  top: 6.55cqw;
  right: -3.97cqw;
}
.lp-count__block:last-of-type::after {
  content: none;
}
.lp-count__box {
  font-size: 15.17cqw;
  font-weight: 200;
  line-height: 1;
  padding: 0.09em 0 0.2em;
  background: #000;
}
.lp-count__txt {
  font-family: "Spinnaker", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.76cqw;
  scale: 1 0.8;
  margin-top: 8px;
}

.lp-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: clamp(6.25rem, -12.1711rem + 32.8947vw, 12.5rem);
}
@media all and (max-width: 896px) {
  .lp-banner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media all and (max-width: 480px) {
  .lp-banner {
    gap: 16px;
  }
}

.pagetop {
  cursor: pointer;
  position: absolute;
  bottom: 112px;
  right: 8.33vw;
}
@media all and (max-width: 896px) {
  .pagetop {
    bottom: 36px;
    right: 20px;
  }
}
.pagetop img {
  width: 30px;
}
@media all and (max-width: 896px) {
  .pagetop img {
    width: 20px;
  }
}