@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-family */
/* ============================================ */
/* font-size */
/* ============================================ */
/* common */
/* ============================================ */
body {
  background: #fff;
  color: #231815;
  font-family: "Zen Antique Soft", serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(1rem, 0.2632rem + 1.3158vw, 1.25rem);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: normal;
  font-feature-settings: "palt";
  min-height: 100vh;
}
body.is-fixed {
  height: 100%;
  overflow: hidden;
}
@media all and (max-width: 896px) {
  body:has(.splide.theme-a) .header-logo__link {
    display: none;
  }
}
@media all and (max-width: 896px) {
  body:has(.splide.theme-a) .header-hamburger__line {
    background: #fff;
  }
}

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

.m0 {
  margin: 0 !important;
}

.p0 {
  padding: 0 !important;
}

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

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

.mr0 {
  margin-right: 0 !important;
}

.mr10 {
  margin-right: 10px !important;
}

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

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

.ml0 {
  margin-left: 0 !important;
}

.ml10 {
  margin-left: 10px !important;
}

.pt0 {
  padding-top: 0 !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pr0 {
  padding-right: 0 !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pl0 {
  padding-left: 0 !important;
}

.pl10 {
  padding-left: 10px !important;
}

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

.mr16 {
  margin-right: 16px !important;
}

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

.ml16 {
  margin-left: 16px !important;
}

.pt16 {
  padding-top: 16px !important;
}

.pr16 {
  padding-right: 16px !important;
}

.pb16 {
  padding-bottom: 16px !important;
}

.pl16 {
  padding-left: 16px !important;
}

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

.mr24 {
  margin-right: 24px !important;
}

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

.ml24 {
  margin-left: 24px !important;
}

.pt24 {
  padding-top: 24px !important;
}

.pr24 {
  padding-right: 24px !important;
}

.pb24 {
  padding-bottom: 24px !important;
}

.pl24 {
  padding-left: 24px !important;
}

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

.mr32 {
  margin-right: 32px !important;
}

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

.ml32 {
  margin-left: 32px !important;
}

.pt32 {
  padding-top: 32px !important;
}

.pr32 {
  padding-right: 32px !important;
}

.pb32 {
  padding-bottom: 32px !important;
}

.pl32 {
  padding-left: 32px !important;
}

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

.mr40 {
  margin-right: 40px !important;
}

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

.ml40 {
  margin-left: 40px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pl40 {
  padding-left: 40px !important;
}

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

.mr48 {
  margin-right: 48px !important;
}

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

.ml48 {
  margin-left: 48px !important;
}

.pt48 {
  padding-top: 48px !important;
}

.pr48 {
  padding-right: 48px !important;
}

.pb48 {
  padding-bottom: 48px !important;
}

.pl48 {
  padding-left: 48px !important;
}

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

.mr56 {
  margin-right: 56px !important;
}

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

.ml56 {
  margin-left: 56px !important;
}

.pt56 {
  padding-top: 56px !important;
}

.pr56 {
  padding-right: 56px !important;
}

.pb56 {
  padding-bottom: 56px !important;
}

.pl56 {
  padding-left: 56px !important;
}

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

.mr64 {
  margin-right: 64px !important;
}

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

.ml64 {
  margin-left: 64px !important;
}

.pt64 {
  padding-top: 64px !important;
}

.pr64 {
  padding-right: 64px !important;
}

.pb64 {
  padding-bottom: 64px !important;
}

.pl64 {
  padding-left: 64px !important;
}

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

.mr72 {
  margin-right: 72px !important;
}

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

.ml72 {
  margin-left: 72px !important;
}

.pt72 {
  padding-top: 72px !important;
}

.pr72 {
  padding-right: 72px !important;
}

.pb72 {
  padding-bottom: 72px !important;
}

.pl72 {
  padding-left: 72px !important;
}

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

.mr80 {
  margin-right: 80px !important;
}

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

.ml80 {
  margin-left: 80px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pr80 {
  padding-right: 80px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pl80 {
  padding-left: 80px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mr90 {
  margin-right: 90px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.ml90 {
  margin-left: 90px !important;
}

.pt90 {
  padding-top: 90px !important;
}

.pr90 {
  padding-right: 90px !important;
}

.pb90 {
  padding-bottom: 90px !important;
}

.pl90 {
  padding-left: 90px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.mr100 {
  margin-right: 100px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.ml100 {
  margin-left: 100px !important;
}

.pt100 {
  padding-top: 100px !important;
}

.pr100 {
  padding-right: 100px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

.pl100 {
  padding-left: 100px !important;
}

.mt110 {
  margin-top: 110px !important;
}

.mr110 {
  margin-right: 110px !important;
}

.mb110 {
  margin-bottom: 110px !important;
}

.ml110 {
  margin-left: 110px !important;
}

.pt110 {
  padding-top: 110px !important;
}

.pr110 {
  padding-right: 110px !important;
}

.pb110 {
  padding-bottom: 110px !important;
}

.pl110 {
  padding-left: 110px !important;
}

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

.mr120 {
  margin-right: 120px !important;
}

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

.ml120 {
  margin-left: 120px !important;
}

.pt120 {
  padding-top: 120px !important;
}

.pr120 {
  padding-right: 120px !important;
}

.pb120 {
  padding-bottom: 120px !important;
}

.pl120 {
  padding-left: 120px !important;
}

.mt130 {
  margin-top: 130px !important;
}

.mr130 {
  margin-right: 130px !important;
}

.mb130 {
  margin-bottom: 130px !important;
}

.ml130 {
  margin-left: 130px !important;
}

.pt130 {
  padding-top: 130px !important;
}

.pr130 {
  padding-right: 130px !important;
}

.pb130 {
  padding-bottom: 130px !important;
}

.pl130 {
  padding-left: 130px !important;
}

.mt140 {
  margin-top: 140px !important;
}

.mr140 {
  margin-right: 140px !important;
}

.mb140 {
  margin-bottom: 140px !important;
}

.ml140 {
  margin-left: 140px !important;
}

.pt140 {
  padding-top: 140px !important;
}

.pr140 {
  padding-right: 140px !important;
}

.pb140 {
  padding-bottom: 140px !important;
}

.pl140 {
  padding-left: 140px !important;
}

.mt150 {
  margin-top: 150px !important;
}

.mr150 {
  margin-right: 150px !important;
}

.mb150 {
  margin-bottom: 150px !important;
}

.ml150 {
  margin-left: 150px !important;
}

.pt150 {
  padding-top: 150px !important;
}

.pr150 {
  padding-right: 150px !important;
}

.pb150 {
  padding-bottom: 150px !important;
}

.pl150 {
  padding-left: 150px !important;
}

.mt160 {
  margin-top: 160px !important;
}

.mr160 {
  margin-right: 160px !important;
}

.mb160 {
  margin-bottom: 160px !important;
}

.ml160 {
  margin-left: 160px !important;
}

.pt160 {
  padding-top: 160px !important;
}

.pr160 {
  padding-right: 160px !important;
}

.pb160 {
  padding-bottom: 160px !important;
}

.pl160 {
  padding-left: 160px !important;
}

.mt170 {
  margin-top: 170px !important;
}

.mr170 {
  margin-right: 170px !important;
}

.mb170 {
  margin-bottom: 170px !important;
}

.ml170 {
  margin-left: 170px !important;
}

.pt170 {
  padding-top: 170px !important;
}

.pr170 {
  padding-right: 170px !important;
}

.pb170 {
  padding-bottom: 170px !important;
}

.pl170 {
  padding-left: 170px !important;
}

.mt180 {
  margin-top: 180px !important;
}

.mr180 {
  margin-right: 180px !important;
}

.mb180 {
  margin-bottom: 180px !important;
}

.ml180 {
  margin-left: 180px !important;
}

.pt180 {
  padding-top: 180px !important;
}

.pr180 {
  padding-right: 180px !important;
}

.pb180 {
  padding-bottom: 180px !important;
}

.pl180 {
  padding-left: 180px !important;
}

.mt190 {
  margin-top: 190px !important;
}

.mr190 {
  margin-right: 190px !important;
}

.mb190 {
  margin-bottom: 190px !important;
}

.ml190 {
  margin-left: 190px !important;
}

.pt190 {
  padding-top: 190px !important;
}

.pr190 {
  padding-right: 190px !important;
}

.pb190 {
  padding-bottom: 190px !important;
}

.pl190 {
  padding-left: 190px !important;
}

.mt200 {
  margin-top: 200px !important;
}

.mr200 {
  margin-right: 200px !important;
}

.mb200 {
  margin-bottom: 200px !important;
}

.ml200 {
  margin-left: 200px !important;
}

.pt200 {
  padding-top: 200px !important;
}

.pr200 {
  padding-right: 200px !important;
}

.pb200 {
  padding-bottom: 200px !important;
}

.pl200 {
  padding-left: 200px !important;
}

@media all and (max-width: 896px) {
  .m0-sm {
    margin: 0 !important;
  }
  .p0-sm {
    padding: 0 !important;
  }
  .mt-sm0 {
    margin-top: 0 !important;
  }
  .mt-sm10 {
    margin-top: 10px !important;
  }
  .mr-sm0 {
    margin-right: 0 !important;
  }
  .mr-sm10 {
    margin-right: 10px !important;
  }
  .mb-sm0 {
    margin-bottom: 0 !important;
  }
  .mb-sm10 {
    margin-bottom: 10px !important;
  }
  .ml-sm0 {
    margin-left: 0 !important;
  }
  .ml-sm10 {
    margin-left: 10px !important;
  }
  .pt-sm0 {
    padding-top: 0 !important;
  }
  .pt-sm10 {
    padding-top: 10px !important;
  }
  .pr-sm0 {
    padding-right: 0 !important;
  }
  .pr-sm10 {
    padding-right: 10px !important;
  }
  .pb-sm0 {
    padding-bottom: 0 !important;
  }
  .pb-sm10 {
    padding-bottom: 10px !important;
  }
  .pl-sm0 {
    padding-left: 0 !important;
  }
  .pl-sm10 {
    padding-left: 10px !important;
  }
  .mt-sm16 {
    margin-top: 16px !important;
  }
  .mr-sm16 {
    margin-right: 16px !important;
  }
  .mb-sm16 {
    margin-bottom: 16px !important;
  }
  .ml-sm16 {
    margin-left: 16px !important;
  }
  .pt-sm16 {
    padding-top: 16px !important;
  }
  .pr-sm16 {
    padding-right: 16px !important;
  }
  .pb-sm16 {
    padding-bottom: 16px !important;
  }
  .pl-sm16 {
    padding-left: 16px !important;
  }
  .mt-sm24 {
    margin-top: 24px !important;
  }
  .mr-sm24 {
    margin-right: 24px !important;
  }
  .mb-sm24 {
    margin-bottom: 24px !important;
  }
  .ml-sm24 {
    margin-left: 24px !important;
  }
  .pt-sm24 {
    padding-top: 24px !important;
  }
  .pr-sm24 {
    padding-right: 24px !important;
  }
  .pb-sm24 {
    padding-bottom: 24px !important;
  }
  .pl-sm24 {
    padding-left: 24px !important;
  }
  .mt-sm32 {
    margin-top: 32px !important;
  }
  .mr-sm32 {
    margin-right: 32px !important;
  }
  .mb-sm32 {
    margin-bottom: 32px !important;
  }
  .ml-sm32 {
    margin-left: 32px !important;
  }
  .pt-sm32 {
    padding-top: 32px !important;
  }
  .pr-sm32 {
    padding-right: 32px !important;
  }
  .pb-sm32 {
    padding-bottom: 32px !important;
  }
  .pl-sm32 {
    padding-left: 32px !important;
  }
  .mt-sm40 {
    margin-top: 40px !important;
  }
  .mr-sm40 {
    margin-right: 40px !important;
  }
  .mb-sm40 {
    margin-bottom: 40px !important;
  }
  .ml-sm40 {
    margin-left: 40px !important;
  }
  .pt-sm40 {
    padding-top: 40px !important;
  }
  .pr-sm40 {
    padding-right: 40px !important;
  }
  .pb-sm40 {
    padding-bottom: 40px !important;
  }
  .pl-sm40 {
    padding-left: 40px !important;
  }
  .mt-sm48 {
    margin-top: 48px !important;
  }
  .mr-sm48 {
    margin-right: 48px !important;
  }
  .mb-sm48 {
    margin-bottom: 48px !important;
  }
  .ml-sm48 {
    margin-left: 48px !important;
  }
  .pt-sm48 {
    padding-top: 48px !important;
  }
  .pr-sm48 {
    padding-right: 48px !important;
  }
  .pb-sm48 {
    padding-bottom: 48px !important;
  }
  .pl-sm48 {
    padding-left: 48px !important;
  }
  .mt-sm56 {
    margin-top: 56px !important;
  }
  .mr-sm56 {
    margin-right: 56px !important;
  }
  .mb-sm56 {
    margin-bottom: 56px !important;
  }
  .ml-sm56 {
    margin-left: 56px !important;
  }
  .pt-sm56 {
    padding-top: 56px !important;
  }
  .pr-sm56 {
    padding-right: 56px !important;
  }
  .pb-sm56 {
    padding-bottom: 56px !important;
  }
  .pl-sm56 {
    padding-left: 56px !important;
  }
  .mt-sm64 {
    margin-top: 64px !important;
  }
  .mr-sm64 {
    margin-right: 64px !important;
  }
  .mb-sm64 {
    margin-bottom: 64px !important;
  }
  .ml-sm64 {
    margin-left: 64px !important;
  }
  .pt-sm64 {
    padding-top: 64px !important;
  }
  .pr-sm64 {
    padding-right: 64px !important;
  }
  .pb-sm64 {
    padding-bottom: 64px !important;
  }
  .pl-sm64 {
    padding-left: 64px !important;
  }
  .mt-sm72 {
    margin-top: 72px !important;
  }
  .mr-sm72 {
    margin-right: 72px !important;
  }
  .mb-sm72 {
    margin-bottom: 72px !important;
  }
  .ml-sm72 {
    margin-left: 72px !important;
  }
  .pt-sm72 {
    padding-top: 72px !important;
  }
  .pr-sm72 {
    padding-right: 72px !important;
  }
  .pb-sm72 {
    padding-bottom: 72px !important;
  }
  .pl-sm72 {
    padding-left: 72px !important;
  }
  .mt-sm80 {
    margin-top: 80px !important;
  }
  .mr-sm80 {
    margin-right: 80px !important;
  }
  .mb-sm80 {
    margin-bottom: 80px !important;
  }
  .ml-sm80 {
    margin-left: 80px !important;
  }
  .pt-sm80 {
    padding-top: 80px !important;
  }
  .pr-sm80 {
    padding-right: 80px !important;
  }
  .pb-sm80 {
    padding-bottom: 80px !important;
  }
  .pl-sm80 {
    padding-left: 80px !important;
  }
  .mt-sm90 {
    margin-top: 90px !important;
  }
  .mr-sm90 {
    margin-right: 90px !important;
  }
  .mb-sm90 {
    margin-bottom: 90px !important;
  }
  .ml-sm90 {
    margin-left: 90px !important;
  }
  .pt-sm90 {
    padding-top: 90px !important;
  }
  .pr-sm90 {
    padding-right: 90px !important;
  }
  .pb-sm90 {
    padding-bottom: 90px !important;
  }
  .pl-sm90 {
    padding-left: 90px !important;
  }
  .mt-sm100 {
    margin-top: 100px !important;
  }
  .mr-sm100 {
    margin-right: 100px !important;
  }
  .mb-sm100 {
    margin-bottom: 100px !important;
  }
  .ml-sm100 {
    margin-left: 100px !important;
  }
  .pt-sm100 {
    padding-top: 100px !important;
  }
  .pr-sm100 {
    padding-right: 100px !important;
  }
  .pb-sm100 {
    padding-bottom: 100px !important;
  }
  .pl-sm100 {
    padding-left: 100px !important;
  }
  .mt-sm110 {
    margin-top: 110px !important;
  }
  .mr-sm110 {
    margin-right: 110px !important;
  }
  .mb-sm110 {
    margin-bottom: 110px !important;
  }
  .ml-sm110 {
    margin-left: 110px !important;
  }
  .pt-sm110 {
    padding-top: 110px !important;
  }
  .pr-sm110 {
    padding-right: 110px !important;
  }
  .pb-sm110 {
    padding-bottom: 110px !important;
  }
  .pl-sm110 {
    padding-left: 110px !important;
  }
  .mt-sm120 {
    margin-top: 120px !important;
  }
  .mr-sm120 {
    margin-right: 120px !important;
  }
  .mb-sm120 {
    margin-bottom: 120px !important;
  }
  .ml-sm120 {
    margin-left: 120px !important;
  }
  .pt-sm120 {
    padding-top: 120px !important;
  }
  .pr-sm120 {
    padding-right: 120px !important;
  }
  .pb-sm120 {
    padding-bottom: 120px !important;
  }
  .pl-sm120 {
    padding-left: 120px !important;
  }
  .mt-sm130 {
    margin-top: 130px !important;
  }
  .mr-sm130 {
    margin-right: 130px !important;
  }
  .mb-sm130 {
    margin-bottom: 130px !important;
  }
  .ml-sm130 {
    margin-left: 130px !important;
  }
  .pt-sm130 {
    padding-top: 130px !important;
  }
  .pr-sm130 {
    padding-right: 130px !important;
  }
  .pb-sm130 {
    padding-bottom: 130px !important;
  }
  .pl-sm130 {
    padding-left: 130px !important;
  }
  .mt-sm140 {
    margin-top: 140px !important;
  }
  .mr-sm140 {
    margin-right: 140px !important;
  }
  .mb-sm140 {
    margin-bottom: 140px !important;
  }
  .ml-sm140 {
    margin-left: 140px !important;
  }
  .pt-sm140 {
    padding-top: 140px !important;
  }
  .pr-sm140 {
    padding-right: 140px !important;
  }
  .pb-sm140 {
    padding-bottom: 140px !important;
  }
  .pl-sm140 {
    padding-left: 140px !important;
  }
  .mt-sm150 {
    margin-top: 150px !important;
  }
  .mr-sm150 {
    margin-right: 150px !important;
  }
  .mb-sm150 {
    margin-bottom: 150px !important;
  }
  .ml-sm150 {
    margin-left: 150px !important;
  }
  .pt-sm150 {
    padding-top: 150px !important;
  }
  .pr-sm150 {
    padding-right: 150px !important;
  }
  .pb-sm150 {
    padding-bottom: 150px !important;
  }
  .pl-sm150 {
    padding-left: 150px !important;
  }
  .mt-sm160 {
    margin-top: 160px !important;
  }
  .mr-sm160 {
    margin-right: 160px !important;
  }
  .mb-sm160 {
    margin-bottom: 160px !important;
  }
  .ml-sm160 {
    margin-left: 160px !important;
  }
  .pt-sm160 {
    padding-top: 160px !important;
  }
  .pr-sm160 {
    padding-right: 160px !important;
  }
  .pb-sm160 {
    padding-bottom: 160px !important;
  }
  .pl-sm160 {
    padding-left: 160px !important;
  }
  .mt-sm170 {
    margin-top: 170px !important;
  }
  .mr-sm170 {
    margin-right: 170px !important;
  }
  .mb-sm170 {
    margin-bottom: 170px !important;
  }
  .ml-sm170 {
    margin-left: 170px !important;
  }
  .pt-sm170 {
    padding-top: 170px !important;
  }
  .pr-sm170 {
    padding-right: 170px !important;
  }
  .pb-sm170 {
    padding-bottom: 170px !important;
  }
  .pl-sm170 {
    padding-left: 170px !important;
  }
  .mt-sm180 {
    margin-top: 180px !important;
  }
  .mr-sm180 {
    margin-right: 180px !important;
  }
  .mb-sm180 {
    margin-bottom: 180px !important;
  }
  .ml-sm180 {
    margin-left: 180px !important;
  }
  .pt-sm180 {
    padding-top: 180px !important;
  }
  .pr-sm180 {
    padding-right: 180px !important;
  }
  .pb-sm180 {
    padding-bottom: 180px !important;
  }
  .pl-sm180 {
    padding-left: 180px !important;
  }
  .mt-sm190 {
    margin-top: 190px !important;
  }
  .mr-sm190 {
    margin-right: 190px !important;
  }
  .mb-sm190 {
    margin-bottom: 190px !important;
  }
  .ml-sm190 {
    margin-left: 190px !important;
  }
  .pt-sm190 {
    padding-top: 190px !important;
  }
  .pr-sm190 {
    padding-right: 190px !important;
  }
  .pb-sm190 {
    padding-bottom: 190px !important;
  }
  .pl-sm190 {
    padding-left: 190px !important;
  }
  .mt-sm200 {
    margin-top: 200px !important;
  }
  .mr-sm200 {
    margin-right: 200px !important;
  }
  .mb-sm200 {
    margin-bottom: 200px !important;
  }
  .ml-sm200 {
    margin-left: 200px !important;
  }
  .pt-sm200 {
    padding-top: 200px !important;
  }
  .pr-sm200 {
    padding-right: 200px !important;
  }
  .pb-sm200 {
    padding-bottom: 200px !important;
  }
  .pl-sm200 {
    padding-left: 200px !important;
  }
}
.fz48 {
  font-size: 4.8rem !important;
}

.fz32 {
  font-size: 3.2rem !important;
}

.fz30 {
  font-size: 3rem !important;
}

.fz28 {
  font-size: 2.8rem !important;
}

.fz26 {
  font-size: 2.6rem !important;
}

.fz24 {
  font-size: 2.4rem !important;
}

.fz22 {
  font-size: 2.2rem !important;
}

.fz20 {
  font-size: 2rem !important;
}

.fz18 {
  font-size: 1.8rem !important;
}

.fz16 {
  font-size: 1.6rem !important;
}

.fz14 {
  font-size: 1.4rem !important;
}

.fz12 {
  font-size: 1.2rem !important;
}

.fz10 {
  font-size: 1rem !important;
}

@media all and (max-width: 896px) {
  .fz48-sm {
    font-size: 4.8rem !important;
  }
  .fz32-sm {
    font-size: 3.2rem !important;
  }
  .fz30-sm {
    font-size: 3rem !important;
  }
  .fz28-sm {
    font-size: 2.8rem !important;
  }
  .fz26-sm {
    font-size: 2.6rem !important;
  }
  .fz24-sm {
    font-size: 2.4rem !important;
  }
  .fz22-sm {
    font-size: 2.2rem !important;
  }
  .fz20-sm {
    font-size: 2rem !important;
  }
  .fz18-sm {
    font-size: 1.8rem !important;
  }
  .fz16-sm {
    font-size: 1.6rem !important;
  }
  .fz14-sm {
    font-size: 1.4rem !important;
  }
  .fz12-sm {
    font-size: 1.2rem !important;
  }
  .fz10-sm {
    font-size: 1rem !important;
  }
}
.width {
  container-type: inline-size;
  max-width: 1200px;
  width: calc(100% - 80px);
  margin: 0 auto;
}
@media all and (max-width: 896px) {
  .width {
    width: calc(100% - 40px);
  }
}

.outer {
  overflow: hidden;
}

/* parts */
/* ============================================ */
.common-ttl {
  text-align: center;
  width: 100%;
  max-width: 540px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.2em;
  font-size: clamp(1.5rem, 0.0263rem + 2.6316vw, 2rem);
  letter-spacing: -0.05em;
  line-height: 1.4;
  margin-inline: auto;
}
@media all and (max-width: 896px) {
  .common-ttl {
    max-width: 320px;
  }
}
.common-ttl::before, .common-ttl::after {
  flex-shrink: 0;
  content: "";
  display: inline-block;
  width: 2.16em;
  height: 2.62em;
  background: url("../images/common/ttl_mark_left.svg") center center/contain no-repeat;
}
.common-ttl::after {
  background-image: url("../images/common/ttl_mark_right.svg");
}

/* move */
/* ============================================ */
.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);
}

/* notfound */
/* ============================================ */
.notfound {
  position: relative;
}
.notfound::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../images/common/bg.jpg") center center/cover no-repeat;
  opacity: 0.4;
  position: absolute;
  top: 0;
  left: 0;
}
.notfound::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #F5EEDF;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
}
.notfound-outer {
  padding: clamp(3rem, -2.8947rem + 10.5263vw, 5rem) 0;
}
@media all and (max-width: 896px) {
  .notfound-outer {
    padding: 80px 0 48px;
  }
}
.notfound-wrapper {
  position: relative;
  z-index: 10;
}
.notfound-ttl {
  word-break: keep-all;
  text-align: center;
  font-size: clamp(1.5rem, 0.0263rem + 2.6316vw, 2rem);
}
.notfound-txt {
  word-break: keep-all;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: clamp(0.9375rem, 0.3849rem + 0.9868vw, 1.125rem);
  line-height: 1.8;
  margin-top: clamp(1.5rem, -1.4474rem + 5.2632vw, 2.5rem);
}
.notfound-back {
  text-align: center;
  max-width: 400px;
  margin-top: clamp(2rem, -3.8947rem + 10.5263vw, 4rem);
  margin-inline: auto;
}
@media all and (max-width: 896px) {
  .notfound-back {
    max-width: 320px;
  }
}
.notfound-back__link {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: clamp(1.125rem, 0.7566rem + 0.6579vw, 1.25rem);
  padding: 1.5em 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5em;
  background: #231815;
  color: #fff;
}

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

/* header */
/* ============================================ */
.header {
  width: 100%;
  background: #231815;
  color: #fff;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 800;
  transition: all 0.3s ease-out;
}
@media all and (max-width: 896px) {
  .header {
    position: fixed;
    height: 60px;
    background: transparent;
  }
}
.header-wrapper {
  max-width: 1200px;
  width: calc(100% - 80px);
  height: 100%;
  margin-inline: auto;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 24px;
}
@media all and (max-width: 896px) {
  .header-wrapper {
    width: 100%;
    padding: 0 0 0 20px;
  }
}
.header-logo img {
  width: min(13.67vw, 164px);
}
@media all and (max-width: 896px) {
  .header-logo img {
    width: 110px;
  }
}
@media all and (max-width: 896px) {
  .header-contents {
    display: none;
  }
}
.header-menu {
  font-size: clamp(1rem, 0.2632rem + 1.3158vw, 1.25rem);
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 2.67cqw;
}
.header-menu > li.current {
  color: #C40018;
}
.header-hamburger {
  display: none;
}
@media all and (max-width: 896px) {
  .header-hamburger {
    display: block;
    width: 60px;
    height: 60px;
    cursor: pointer;
    position: relative;
    z-index: 600;
  }
}
.header-hamburger.active .header-hamburger__line {
  background: #fff;
}
.header-hamburger.active .header-hamburger__line:nth-of-type(1) {
  translate: 0 0;
  rotate: -45deg;
}
.header-hamburger.active .header-hamburger__line:nth-of-type(2) {
  opacity: 0;
}
.header-hamburger.active .header-hamburger__line:nth-of-type(3) {
  translate: 0 0;
  rotate: 45deg;
}
.header-hamburger__line {
  display: block;
  width: 30px;
  height: 2px;
  background: #1F1412;
  transition: rotate 0.3s ease-out, opacity 0.1s ease-out;
  position: absolute;
  inset: 0;
  margin: auto;
}
.header-hamburger__line:nth-of-type(1) {
  translate: 0 -9px;
}
.header-hamburger__line:nth-of-type(3) {
  translate: 0 9px;
}
.header-nav {
  display: none;
}
@media all and (max-width: 896px) {
  .header-nav {
    display: block;
    width: 100%;
    max-width: 400px;
    height: 100dvh;
    padding: 100px 48px 80px;
    background: #000;
    color: #fff;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 400;
    translate: 100% 0;
    transition: all 0.3s linear;
    overflow: auto;
  }
}
.header-nav.open {
  translate: 0 0;
}
.header-nav__logo {
  position: absolute;
  top: 20px;
  left: 24px;
}
.header-nav__list {
  font-size: clamp(1.125rem, 0.0197rem + 1.9737vw, 1.5rem);
}
.header-nav__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
  padding: 1em 0;
}
.header-nav__sns {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 92px;
}
@-webkit-keyframes navOpen {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes navOpen {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.header .overlay {
  display: none;
}
@media all and (max-width: 896px) {
  .header .overlay {
    display: block;
    width: 0;
    height: 0;
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    opacity: 0;
    transition: opacity 0.3s ease-out;
  }
}
.header .overlay.open {
  width: 100%;
  height: 100%;
  opacity: 1;
}

/* footer */
/* ============================================ */
.footer {
  text-align: center;
  padding: clamp(3rem, -8.7895rem + 21.0526vw, 7rem) 0 clamp(5rem, 2.7895rem + 3.9474vw, 5.75rem);
  position: -webkit-sticky;
  position: sticky;
  top: 100dvh;
  z-index: 400;
}
.footer-logo img {
  width: 230px;
}
@media all and (max-width: 896px) {
  .footer-logo img {
    width: 180px;
  }
}
.footer-sns {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: clamp(4rem, 1.0526rem + 5.2632vw, 5rem);
}
@media all and (max-width: 896px) {
  .footer-sns {
    gap: 40px;
  }
}
.footer-sns img {
  width: 37px;
}
@media all and (max-width: 896px) {
  .footer-sns img {
    width: 30px;
  }
}
.footer-contact {
  margin-top: 32px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: clamp(1rem, 0.6316rem + 0.6579vw, 1.125rem);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 2em;
}
.footer .pagetop {
  cursor: pointer;
  position: fixed;
  right: 20px;
  bottom: 0;
  z-index: 600;
}
@media all and (max-width: 896px) {
  .footer .pagetop 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: 24px 20px;
}

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