@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 */
/* ============================================ */
/* common */
/* ============================================ */
/**:not(input):not(textarea) {
  user-select: none;
}*/
html {
  font-size: 62.5%;
}

body {
  background: #fff;
  color: #373737;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "Hiragino Sans", Meiryo, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.8;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  letter-spacing: 0.02em;
  font-feature-settings: "palt";
  min-height: 100dvh;
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 禁則処理を厳格に適用 */
}
@media all and (max-width: 896px) {
  body {
    font-size: 1.4rem;
  }
}
body.is-fixed {
  height: 100%;
  overflow: hidden;
}

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

.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;
  }
  .mt0-sm {
    margin-top: 0 !important;
  }
  .mt10-sm {
    margin-top: 10px !important;
  }
  .mr0-sm {
    margin-right: 0 !important;
  }
  .mr10-sm {
    margin-right: 10px !important;
  }
  .mb0-sm {
    margin-bottom: 0 !important;
  }
  .mb10-sm {
    margin-bottom: 10px !important;
  }
  .ml0-sm {
    margin-left: 0 !important;
  }
  .ml10-sm {
    margin-left: 10px !important;
  }
  .pt0-sm {
    padding-top: 0 !important;
  }
  .pt10-sm {
    padding-top: 10px !important;
  }
  .pr0-sm {
    padding-right: 0 !important;
  }
  .pr10-sm {
    padding-right: 10px !important;
  }
  .pb0-sm {
    padding-bottom: 0 !important;
  }
  .pb10-sm {
    padding-bottom: 10px !important;
  }
  .pl0-sm {
    padding-left: 0 !important;
  }
  .pl10-sm {
    padding-left: 10px !important;
  }
  .mt16-sm {
    margin-top: 16px !important;
  }
  .mr16-sm {
    margin-right: 16px !important;
  }
  .mb16-sm {
    margin-bottom: 16px !important;
  }
  .ml16-sm {
    margin-left: 16px !important;
  }
  .pt16-sm {
    padding-top: 16px !important;
  }
  .pr16-sm {
    padding-right: 16px !important;
  }
  .pb16-sm {
    padding-bottom: 16px !important;
  }
  .pl16-sm {
    padding-left: 16px !important;
  }
  .mt24-sm {
    margin-top: 24px !important;
  }
  .mr24-sm {
    margin-right: 24px !important;
  }
  .mb24-sm {
    margin-bottom: 24px !important;
  }
  .ml24-sm {
    margin-left: 24px !important;
  }
  .pt24-sm {
    padding-top: 24px !important;
  }
  .pr24-sm {
    padding-right: 24px !important;
  }
  .pb24-sm {
    padding-bottom: 24px !important;
  }
  .pl24-sm {
    padding-left: 24px !important;
  }
  .mt32-sm {
    margin-top: 32px !important;
  }
  .mr32-sm {
    margin-right: 32px !important;
  }
  .mb32-sm {
    margin-bottom: 32px !important;
  }
  .ml32-sm {
    margin-left: 32px !important;
  }
  .pt32-sm {
    padding-top: 32px !important;
  }
  .pr32-sm {
    padding-right: 32px !important;
  }
  .pb32-sm {
    padding-bottom: 32px !important;
  }
  .pl32-sm {
    padding-left: 32px !important;
  }
  .mt40-sm {
    margin-top: 40px !important;
  }
  .mr40-sm {
    margin-right: 40px !important;
  }
  .mb40-sm {
    margin-bottom: 40px !important;
  }
  .ml40-sm {
    margin-left: 40px !important;
  }
  .pt40-sm {
    padding-top: 40px !important;
  }
  .pr40-sm {
    padding-right: 40px !important;
  }
  .pb40-sm {
    padding-bottom: 40px !important;
  }
  .pl40-sm {
    padding-left: 40px !important;
  }
  .mt48-sm {
    margin-top: 48px !important;
  }
  .mr48-sm {
    margin-right: 48px !important;
  }
  .mb48-sm {
    margin-bottom: 48px !important;
  }
  .ml48-sm {
    margin-left: 48px !important;
  }
  .pt48-sm {
    padding-top: 48px !important;
  }
  .pr48-sm {
    padding-right: 48px !important;
  }
  .pb48-sm {
    padding-bottom: 48px !important;
  }
  .pl48-sm {
    padding-left: 48px !important;
  }
  .mt56-sm {
    margin-top: 56px !important;
  }
  .mr56-sm {
    margin-right: 56px !important;
  }
  .mb56-sm {
    margin-bottom: 56px !important;
  }
  .ml56-sm {
    margin-left: 56px !important;
  }
  .pt56-sm {
    padding-top: 56px !important;
  }
  .pr56-sm {
    padding-right: 56px !important;
  }
  .pb56-sm {
    padding-bottom: 56px !important;
  }
  .pl56-sm {
    padding-left: 56px !important;
  }
  .mt64-sm {
    margin-top: 64px !important;
  }
  .mr64-sm {
    margin-right: 64px !important;
  }
  .mb64-sm {
    margin-bottom: 64px !important;
  }
  .ml64-sm {
    margin-left: 64px !important;
  }
  .pt64-sm {
    padding-top: 64px !important;
  }
  .pr64-sm {
    padding-right: 64px !important;
  }
  .pb64-sm {
    padding-bottom: 64px !important;
  }
  .pl64-sm {
    padding-left: 64px !important;
  }
  .mt72-sm {
    margin-top: 72px !important;
  }
  .mr72-sm {
    margin-right: 72px !important;
  }
  .mb72-sm {
    margin-bottom: 72px !important;
  }
  .ml72-sm {
    margin-left: 72px !important;
  }
  .pt72-sm {
    padding-top: 72px !important;
  }
  .pr72-sm {
    padding-right: 72px !important;
  }
  .pb72-sm {
    padding-bottom: 72px !important;
  }
  .pl72-sm {
    padding-left: 72px !important;
  }
  .mt80-sm {
    margin-top: 80px !important;
  }
  .mr80-sm {
    margin-right: 80px !important;
  }
  .mb80-sm {
    margin-bottom: 80px !important;
  }
  .ml80-sm {
    margin-left: 80px !important;
  }
  .pt80-sm {
    padding-top: 80px !important;
  }
  .pr80-sm {
    padding-right: 80px !important;
  }
  .pb80-sm {
    padding-bottom: 80px !important;
  }
  .pl80-sm {
    padding-left: 80px !important;
  }
  .mt90-sm {
    margin-top: 90px !important;
  }
  .mr90-sm {
    margin-right: 90px !important;
  }
  .mb90-sm {
    margin-bottom: 90px !important;
  }
  .ml90-sm {
    margin-left: 90px !important;
  }
  .pt90-sm {
    padding-top: 90px !important;
  }
  .pr90-sm {
    padding-right: 90px !important;
  }
  .pb90-sm {
    padding-bottom: 90px !important;
  }
  .pl90-sm {
    padding-left: 90px !important;
  }
  .mt100-sm {
    margin-top: 100px !important;
  }
  .mr100-sm {
    margin-right: 100px !important;
  }
  .mb100-sm {
    margin-bottom: 100px !important;
  }
  .ml100-sm {
    margin-left: 100px !important;
  }
  .pt100-sm {
    padding-top: 100px !important;
  }
  .pr100-sm {
    padding-right: 100px !important;
  }
  .pb100-sm {
    padding-bottom: 100px !important;
  }
  .pl100-sm {
    padding-left: 100px !important;
  }
  .mt110-sm {
    margin-top: 110px !important;
  }
  .mr110-sm {
    margin-right: 110px !important;
  }
  .mb110-sm {
    margin-bottom: 110px !important;
  }
  .ml110-sm {
    margin-left: 110px !important;
  }
  .pt110-sm {
    padding-top: 110px !important;
  }
  .pr110-sm {
    padding-right: 110px !important;
  }
  .pb110-sm {
    padding-bottom: 110px !important;
  }
  .pl110-sm {
    padding-left: 110px !important;
  }
  .mt120-sm {
    margin-top: 120px !important;
  }
  .mr120-sm {
    margin-right: 120px !important;
  }
  .mb120-sm {
    margin-bottom: 120px !important;
  }
  .ml120-sm {
    margin-left: 120px !important;
  }
  .pt120-sm {
    padding-top: 120px !important;
  }
  .pr120-sm {
    padding-right: 120px !important;
  }
  .pb120-sm {
    padding-bottom: 120px !important;
  }
  .pl120-sm {
    padding-left: 120px !important;
  }
  .mt130-sm {
    margin-top: 130px !important;
  }
  .mr130-sm {
    margin-right: 130px !important;
  }
  .mb130-sm {
    margin-bottom: 130px !important;
  }
  .ml130-sm {
    margin-left: 130px !important;
  }
  .pt130-sm {
    padding-top: 130px !important;
  }
  .pr130-sm {
    padding-right: 130px !important;
  }
  .pb130-sm {
    padding-bottom: 130px !important;
  }
  .pl130-sm {
    padding-left: 130px !important;
  }
  .mt140-sm {
    margin-top: 140px !important;
  }
  .mr140-sm {
    margin-right: 140px !important;
  }
  .mb140-sm {
    margin-bottom: 140px !important;
  }
  .ml140-sm {
    margin-left: 140px !important;
  }
  .pt140-sm {
    padding-top: 140px !important;
  }
  .pr140-sm {
    padding-right: 140px !important;
  }
  .pb140-sm {
    padding-bottom: 140px !important;
  }
  .pl140-sm {
    padding-left: 140px !important;
  }
  .mt150-sm {
    margin-top: 150px !important;
  }
  .mr150-sm {
    margin-right: 150px !important;
  }
  .mb150-sm {
    margin-bottom: 150px !important;
  }
  .ml150-sm {
    margin-left: 150px !important;
  }
  .pt150-sm {
    padding-top: 150px !important;
  }
  .pr150-sm {
    padding-right: 150px !important;
  }
  .pb150-sm {
    padding-bottom: 150px !important;
  }
  .pl150-sm {
    padding-left: 150px !important;
  }
  .mt160-sm {
    margin-top: 160px !important;
  }
  .mr160-sm {
    margin-right: 160px !important;
  }
  .mb160-sm {
    margin-bottom: 160px !important;
  }
  .ml160-sm {
    margin-left: 160px !important;
  }
  .pt160-sm {
    padding-top: 160px !important;
  }
  .pr160-sm {
    padding-right: 160px !important;
  }
  .pb160-sm {
    padding-bottom: 160px !important;
  }
  .pl160-sm {
    padding-left: 160px !important;
  }
  .mt170-sm {
    margin-top: 170px !important;
  }
  .mr170-sm {
    margin-right: 170px !important;
  }
  .mb170-sm {
    margin-bottom: 170px !important;
  }
  .ml170-sm {
    margin-left: 170px !important;
  }
  .pt170-sm {
    padding-top: 170px !important;
  }
  .pr170-sm {
    padding-right: 170px !important;
  }
  .pb170-sm {
    padding-bottom: 170px !important;
  }
  .pl170-sm {
    padding-left: 170px !important;
  }
  .mt180-sm {
    margin-top: 180px !important;
  }
  .mr180-sm {
    margin-right: 180px !important;
  }
  .mb180-sm {
    margin-bottom: 180px !important;
  }
  .ml180-sm {
    margin-left: 180px !important;
  }
  .pt180-sm {
    padding-top: 180px !important;
  }
  .pr180-sm {
    padding-right: 180px !important;
  }
  .pb180-sm {
    padding-bottom: 180px !important;
  }
  .pl180-sm {
    padding-left: 180px !important;
  }
  .mt190-sm {
    margin-top: 190px !important;
  }
  .mr190-sm {
    margin-right: 190px !important;
  }
  .mb190-sm {
    margin-bottom: 190px !important;
  }
  .ml190-sm {
    margin-left: 190px !important;
  }
  .pt190-sm {
    padding-top: 190px !important;
  }
  .pr190-sm {
    padding-right: 190px !important;
  }
  .pb190-sm {
    padding-bottom: 190px !important;
  }
  .pl190-sm {
    padding-left: 190px !important;
  }
  .mt200-sm {
    margin-top: 200px !important;
  }
  .mr200-sm {
    margin-right: 200px !important;
  }
  .mb200-sm {
    margin-bottom: 200px !important;
  }
  .ml200-sm {
    margin-left: 200px !important;
  }
  .pt200-sm {
    padding-top: 200px !important;
  }
  .pr200-sm {
    padding-right: 200px !important;
  }
  .pb200-sm {
    padding-bottom: 200px !important;
  }
  .pl200-sm {
    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;
  }
}
.inner {
  max-width: 1340px;
  width: calc(100% - 30px);
  margin-inline: auto;
}

h2 {
  color: #62a6de;
  font-family: "Jost", sans-serif;
  font-size: min(9vw, 18rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 9px;
  opacity: 0.1;
}
@media all and (max-width: 896px) {
  h2 {
    font-size: 5.8rem;
    letter-spacing: 3px;
    opacity: 0.2;
  }
}

.box {
  border-radius: 32px;
  background: #fff;
  box-shadow: 8px 8px 0 0 #62a6de;
}
@media all and (max-width: 896px) {
  .box {
    border-radius: 16px;
    box-shadow: 4px 4px 0 0 #62a6de;
  }
}

.mv {
  position: relative;
  container-type: inline-size;
  max-width: 1760px;
  width: calc(100% - 30px);
  margin-inline: auto;
}
@media all and (max-width: 690px) {
  .mv {
    max-width: 690px;
  }
}
.mv img {
  border-radius: 32px;
}
@media all and (max-width: 690px) {
  .mv img {
    border-radius: 16px;
  }
}

.mv-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4.44%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.818cqw;
  padding: 1.136cqw 3.182cqw;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0.718cqw 0.718cqw 0.718cqw rgba(0, 0, 0, 0.25);
}
@media all and (max-width: 690px) {
  .mv-info {
    bottom: 2.79%;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    width: calc(100% - 20px);
    padding: 12px;
    border-radius: 8px;
    box-shadow: 4.921px 4.921px 4.921px rgba(0, 0, 0, 0.25);
  }
}
.mv-info__row {
  display: flex;
  align-items: center;
  gap: 1.818cqw;
}
@media all and (max-width: 690px) {
  .mv-info__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
.mv-info__group {
  display: flex;
  align-items: center;
  gap: 0.568cqw;
}
@media all and (max-width: 690px) {
  .mv-info__group {
    gap: 10px;
  }
}
.mv-info__badge {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  padding: 0.718cqw;
  border-radius: 0.287cqw;
  background: #033f75;
  color: #fff;
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-weight: 700;
  font-size: 1.293cqw;
  line-height: 1;
  letter-spacing: 0.065cqw;
  white-space: nowrap;
}
@media all and (max-width: 690px) {
  .mv-info__badge {
    padding: 6px 8px;
    border-radius: 3.234px;
    font-size: 1.2rem;
    letter-spacing: 0.6px;
  }
}
.mv-info__date, .mv-info__place {
  display: flex;
  align-items: center;
  color: #033f75;
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.065cqw;
  white-space: nowrap;
}
@media all and (max-width: 690px) {
  .mv-info__date, .mv-info__place {
    letter-spacing: 0.7276px;
  }
}
.mv-info__place {
  font-size: 1.293cqw;
}
@media all and (max-width: 690px) {
  .mv-info__place {
    font-size: 1.4552rem;
  }
}
.mv-info__date {
  font-size: 1.293cqw;
}
@media all and (max-width: 690px) {
  .mv-info__date {
    font-size: 1.4552rem;
  }
}
.mv-info__date .num {
  font-size: 2.011cqw;
}
@media all and (max-width: 690px) {
  .mv-info__date .num {
    font-size: 2.2637rem;
  }
}
.mv-info__date .weekday {
  display: inline-block;
  flex-shrink: 0;
  width: 1.735cqw;
  height: 1.735cqw;
  margin-left: 0.227cqw;
  border-radius: 50%;
  color: #fff;
  font-size: 1.006cqw;
  line-height: 1.735cqw;
  text-align: center;
  vertical-align: middle;
  letter-spacing: 0;
}
.mv-info__date .weekday--sat {
  background: #62a6de;
}
.mv-info__date .weekday--sun {
  background: #f46493;
}
@media all and (max-width: 690px) {
  .mv-info__date .weekday {
    width: 1.953rem;
    height: 1.953rem;
    margin-left: 4px;
    font-size: 1.1319rem;
    line-height: 1.953rem;
  }
}
.mv-info__cta {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  gap: 0.455cqw;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.149cqw 1.8cqw;
  border-radius: 999px;
  background: #ff610f;
  color: #fff;
  font-weight: 900;
  font-size: 1.293cqw;
  text-align: center;
  text-decoration: none;
}
@media all and (max-width: 690px) {
  .mv-info__cta {
    gap: 8px;
    width: 100%;
    padding: 4px 20.227px;
    font-size: 1.4rem;
  }
}
.mv-info__cta svg {
  flex-shrink: 0;
  width: 1.006cqw;
  height: 0.886cqw;
}
@media all and (max-width: 690px) {
  .mv-info__cta svg {
    width: 1.1699rem;
    height: 1.0308rem;
  }
}

.about {
  margin-top: 180px;
}
@media all and (max-width: 896px) {
  .about {
    margin-top: 60px;
  }
}
.about .outline {
  position: relative;
  padding: 100px;
  border-radius: 32px;
  background: #f0f7fc;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.2;
  letter-spacing: 0.1em;
}
@media all and (max-width: 896px) {
  .about .outline {
    padding: 32px 20px 20px;
    border-radius: 16px;
    font-size: 1.6rem;
  }
}
.about .outline::before, .about .outline::after {
  content: "";
  position: absolute;
  width: 221px;
  height: 89px;
  background: url(../images/ico_mountain.png) no-repeat center/cover;
}
@media all and (max-width: 896px) {
  .about .outline::before, .about .outline::after {
    width: 100px;
    height: 40px;
  }
}
.about .outline::before {
  top: -20px;
  left: -70px;
}
@media all and (max-width: 896px) {
  .about .outline::before {
    top: 76px;
    left: -30px;
  }
}
.about .outline::after {
  top: 340px;
  right: -90px;
}
@media all and (max-width: 896px) {
  .about .outline::after {
    top: -16px;
    right: -40px;
  }
}
.about .outline h2 {
  position: absolute;
  top: -4vw;
  left: 0;
  width: 100%;
}
@media all and (max-width: 896px) {
  .about .outline h2 {
    top: -32px;
  }
}
.about .outline h3 {
  position: relative;
  margin-bottom: 24px;
  padding-bottom: 24px;
  color: #373737;
  font-size: 2.8rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
@media all and (max-width: 896px) {
  .about .outline h3 {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
    padding-bottom: 16px;
    font-size: 1.8rem;
  }
  .about .outline h3 + p {
    text-align: left;
  }
}
.about .outline h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 64px;
  height: 6px;
  background: #62a6de;
  translate: -50%;
}
@media all and (max-width: 896px) {
  .about .outline h3::after {
    width: 32px;
    height: 3px;
  }
}
.about .outline h3 span {
  color: #62a6de;
  font-size: 4.8rem;
}
@media all and (max-width: 896px) {
  .about .outline h3 span {
    font-size: 2.2rem;
  }
}
.about .outline .box {
  margin-top: 56px;
  padding: 64px;
}
@media all and (max-width: 896px) {
  .about .outline .box {
    position: relative;
    z-index: 2;
    margin-top: 32px;
    padding: 30px 20px;
  }
}
.about .outline .box hgroup {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-bottom: 48px;
  padding-bottom: 24px;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.6;
}
@media all and (max-width: 896px) {
  .about .outline .box hgroup {
    margin-bottom: 24px;
    padding-bottom: 16px;
    font-size: 2.4rem;
  }
}
.about .outline .box hgroup::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 64px;
  height: 6px;
  background: #62a6de;
  translate: -50%;
}
@media all and (max-width: 896px) {
  .about .outline .box hgroup::after {
    width: 32px;
    height: 3px;
  }
}
.about .outline .box .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
@media all and (max-width: 896px) {
  .about .outline .box .list {
    gap: 16px;
  }
}
.about .outline .box .list li {
  container-type: inline-size;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: calc((100% - 72px) / 4);
  padding: 15px;
  border-radius: 14px;
  background: #f0f7fc;
}
@media (max-width: 895px) {
  .about .outline .box .list li {
    width: calc((100% - 24px) / 2);
  }
}
@media all and (max-width: 480px) {
  .about .outline .box .list li {
    width: 100%;
  }
}
.about .outline .box .list .badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-block: 0.3144rem;
  padding-inline: min(1rem, 3cqi);
  border-radius: 100px;
  background: #62a6de;
  color: #fff;
  font-size: clamp(1.1rem, 8cqi, 1.5rem);
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  white-space: normal;
}
.about .outline .box .list figure {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 100/62;
  margin-block: 8px;
}
.about .outline .box .list figure img {
  max-width: 55%;
  max-height: 75%;
  -o-object-fit: contain;
     object-fit: contain;
}
.about .outline .box .list p {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.11em;
  text-align: center;
}
.about .outline .box .note {
  margin-top: 32px;
  color: #071d2d;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
}
.about .point {
  padding-block: 100px;
  background: url(../images/ico_mountain_set.png) repeat-y center 0/1980px auto;
}
@media all and (max-width: 896px) {
  .about .point {
    padding-block: 50px;
  }
}
.about .point ol {
  counter-reset: number;
  display: flex;
  flex-direction: column;
  gap: 100px;
}
@media all and (max-width: 896px) {
  .about .point ol {
    gap: 50px;
  }
}
.about .point ol li {
  display: flex;
  align-items: center;
  gap: 48px;
}
@media all and (max-width: 896px) {
  .about .point ol li {
    flex-direction: column;
    gap: 16px;
  }
}
.about .point ol li:nth-child(2n) {
  flex-direction: row-reverse;
}
@media all and (max-width: 896px) {
  .about .point ol li:nth-child(2n) {
    flex-direction: column;
  }
}
.about .point ol li > div {
  width: calc(52% - 48px);
}
@media all and (max-width: 896px) {
  .about .point ol li > div {
    width: 100%;
  }
}
.about .point ol li i {
  position: relative;
  padding-inline: 26px;
  color: #62a6de;
  font-family: "Oswald", sans-serif;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media all and (max-width: 896px) {
  .about .point ol li i {
    padding-inline: 22px;
    font-size: 1.6rem;
  }
}
.about .point ol li i::before, .about .point ol li i::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 18px;
  height: 28px;
  background: url(../images/ico_blow.svg) no-repeat center/cover;
}
@media all and (max-width: 896px) {
  .about .point ol li i::before, .about .point ol li i::after {
    width: 14px;
    height: 20px;
  }
}
.about .point ol li i::before {
  left: 0;
}
.about .point ol li i::after {
  right: 0;
  scale: -1 1;
}
.about .point ol li i span {
  position: relative;
}
.about .point ol li i span::after {
  counter-increment: number;
  content: counter(number, decimal-leading-zero);
  margin-left: 4px;
  font-size: 3.2rem;
}
@media all and (max-width: 896px) {
  .about .point ol li i span::after {
    font-size: 2.4rem;
  }
}
.about .point ol li .block {
  position: relative;
  margin-top: 40px;
  padding: 40px;
  border-radius: 8px;
  border: 3px solid #62a6de;
  line-height: 2;
  font-weight: 500;
}
@media all and (max-width: 896px) {
  .about .point ol li .block {
    margin-top: 20px;
    padding: 18px 20px 16px;
  }
}
.about .point ol li .block h4 {
  position: absolute;
  top: -1.8vw;
  left: 20px;
  padding-inline: 16px;
  background: #fff;
  color: #62a6de;
  font-size: clamp(2rem, 1.66vw, 3.2rem);
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media (min-width: 1921px) {
  .about .point ol li .block h4 {
    top: -1.4vw;
  }
}
@media (max-width: 1024px) {
  .about .point ol li .block h4 {
    top: -2.2vw;
  }
}
@media all and (max-width: 896px) {
  .about .point ol li .block h4 {
    top: -21px;
    left: 10px;
    padding-inline: 8px;
    font-size: 1.8rem;
  }
}
.about .point ol li figure {
  flex: none;
  width: 48%;
  border-radius: 16px;
  box-shadow: 8px 8px 0 0 #62a6de;
  overflow: hidden;
}
@media all and (max-width: 896px) {
  .about .point ol li figure {
    width: 100%;
    border-radius: 8px;
    box-shadow: 4px 4px 0 0 #62a6de;
  }
}
.about .point .movie {
  display: flex;
  justify-content: center;
  margin-top: 100px;
}
@media all and (max-width: 896px) {
  .about .point .movie {
    margin-top: 50px;
  }
}

.overview {
  position: relative;
  padding-block: 100px;
  background: url(../images/bg_dot.png) 0/20px auto;
}
@media all and (max-width: 896px) {
  .overview {
    padding-block: 50px;
  }
}
@media (max-width: 1600px) {
  .overview .inner {
    max-width: calc(100% - 18vw);
  }
}
@media all and (max-width: 896px) {
  .overview .inner {
    max-width: calc(100% - 30px);
  }
}
.overview h2 {
  position: absolute;
  top: 70px;
  right: 0;
  z-index: 1;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
@media all and (max-width: 896px) {
  .overview h2 {
    position: static;
    width: calc(100% - 30px);
    margin: 0 auto 16px;
    text-align: center;
    writing-mode: horizontal-tb;
  }
}
.overview .box {
  position: relative;
  padding: 100px;
}
@media all and (max-width: 896px) {
  .overview .box {
    padding: 20px;
  }
}
.overview .box hgroup {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.overview .box hgroup p {
  position: relative;
  margin-bottom: 16px;
  padding-inline: 26px;
  color: #62a6de;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 5rem;
}
@media all and (max-width: 896px) {
  .overview .box hgroup p {
    font-size: 1.8rem;
    padding-inline: 22px;
    line-height: 2.5rem;
  }
}
.overview .box hgroup p::before, .overview .box hgroup p::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 18px;
  height: 28px;
  background: url(../images/ico_blow.svg) no-repeat center/cover;
}
@media all and (max-width: 896px) {
  .overview .box hgroup p::before, .overview .box hgroup p::after {
    width: 14px;
    height: 20px;
  }
}
.overview .box hgroup p::before {
  left: 0;
}
.overview .box hgroup p::after {
  right: 0;
  scale: -1 1;
}
.overview .box hgroup h3 {
  position: relative;
  margin-bottom: 48px;
  padding-bottom: 24px;
  text-align: center;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.6;
}
@media all and (max-width: 896px) {
  .overview .box hgroup h3 {
    margin-bottom: 0;
    padding-bottom: 16px;
    font-size: 2.4rem;
  }
}
.overview .box hgroup h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 64px;
  height: 6px;
  background: #62a6de;
  translate: -50%;
}
@media all and (max-width: 896px) {
  .overview .box hgroup h3::after {
    width: 32px;
    height: 3px;
  }
}
.overview .box ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0 16px;
}
@media all and (max-width: 896px) {
  .overview .box ul {
    flex-direction: column;
  }
}
.overview .box ul li {
  width: calc(50% - 8px);
  padding-block: 24px;
  border-bottom: 1px solid #dbdee0;
  color: #071d2d;
  font-size: 2rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media all and (max-width: 896px) {
  .overview .box ul li {
    width: 100%;
    padding-block: 16px;
    font-size: 1.6rem;
    line-height: 1.8;
    letter-spacing: 0.05em;
  }
}
.overview .box ul li dt {
  color: #62a6de;
  font-size: 1.8rem;
  font-weight: 700;
}
.overview .box ul li dd {
  display: flex;
  flex-direction: column;
}
.overview .box ul li dd span {
  font-size: 1.6rem;
  margin-left: 1em;
  text-indent: -1em;
}

.voice-top {
  position: relative;
  padding-block: 100px 80px;
}
@media all and (max-width: 896px) {
  .voice-top {
    padding-block: 50px 40px;
  }
}
@media (max-width: 1600px) {
  .voice-top .inner {
    max-width: calc(100% - 18vw);
  }
}
@media all and (max-width: 896px) {
  .voice-top .inner {
    max-width: calc(100% - 30px);
  }
}
.voice-top h2 {
  position: absolute;
  top: 50%;
  left: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  translate: 0 -50%;
  white-space: nowrap;
}
@media all and (max-width: 896px) {
  .voice-top h2 {
    position: static;
    width: calc(100% - 30px);
    margin: 0 auto 10px;
    text-align: center;
    writing-mode: horizontal-tb;
    translate: 0;
  }
}
.voice-top h3 {
  position: relative;
  margin-bottom: 48px;
  padding-bottom: 24px;
  text-align: center;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.6;
}
@media all and (max-width: 896px) {
  .voice-top h3 {
    margin-bottom: 24px;
    padding-bottom: 16px;
    font-size: 2.4rem;
  }
}
.voice-top h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 64px;
  height: 6px;
  background: #62a6de;
  translate: -50%;
}
@media all and (max-width: 896px) {
  .voice-top h3::after {
    width: 32px;
    height: 3px;
  }
}
.voice-top ul {
  display: flex;
  gap: 48px;
}
@media all and (max-width: 896px) {
  .voice-top ul {
    flex-direction: column;
    gap: 24px;
  }
}
.voice-top ul li {
  width: calc((100% - 96px) / 3);
  padding: 40px;
  border-radius: 16px;
  background: #f0f7fc;
}
@media all and (max-width: 896px) {
  .voice-top ul li {
    width: 100%;
    padding: 20px;
  }
}
.voice-top ul li div {
  display: flex;
  gap: 16px;
  align-items: center;
}
@media (max-width: 1279px) {
  .voice-top ul li div {
    flex-direction: column;
    margin-bottom: 10px;
  }
}
@media all and (max-width: 896px) {
  .voice-top ul li div {
    flex-direction: row;
    margin-bottom: 16px;
  }
}
.voice-top ul li div figure {
  flex: none;
  width: 120px;
  aspect-ratio: 1;
}
.voice-top ul li div dl {
  color: #62a6de;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.2em;
}
@media (max-width: 1279px) {
  .voice-top ul li div dl {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media all and (max-width: 896px) {
  .voice-top ul li div dl {
    font-size: 1.8rem;
    text-align: center;
    line-height: 1.4;
  }
}
.voice-top ul li div dl dt {
  padding: 4px 24px;
  border-radius: 100vmax;
  background: #62a6de;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media (max-width: 1279px) {
  .voice-top ul li div dl dt {
    margin-bottom: 10px;
  }
}
.voice-btm {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(100% - 30px);
  margin-inline: auto;
}
.voice-btm h4 {
  position: relative;
  margin-bottom: 16px;
  padding-inline: 26px;
  color: #62a6de;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media all and (max-width: 896px) {
  .voice-btm h4 {
    font-size: 1.8rem;
    padding-inline: 22px;
  }
}
.voice-btm h4::before, .voice-btm h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 18px;
  height: 28px;
  background: url(../images/ico_blow.svg) no-repeat center/cover;
}
@media all and (max-width: 896px) {
  .voice-btm h4::before, .voice-btm h4::after {
    width: 14px;
    height: 20px;
  }
}
.voice-btm h4::before {
  left: 0;
}
.voice-btm h4::after {
  right: 0;
  scale: -1 1;
}
.voice-btm h4:not(:first-child) {
  margin-top: 60px;
}
@media all and (max-width: 896px) {
  .voice-btm h4:not(:first-child) {
    margin-top: 30px;
  }
}
.voice-btm h4 + p {
  font-family: "Jost", sans-serif;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1;
}
@media all and (max-width: 896px) {
  .voice-btm h4 + p {
    font-size: 2.8rem;
  }
}
.voice-btm h4 + p strong {
  font-size: 10rem;
}
@media all and (max-width: 896px) {
  .voice-btm h4 + p strong {
    font-size: 5.8rem;
  }
}
.voice-btm > div {
  margin-top: 20px;
  padding: 4px 40px;
  border-radius: 100vmax;
  background: #62a6de;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media all and (max-width: 896px) {
  .voice-btm > div {
    width: 100%;
    padding: 8px 24px;
    text-align: center;
    font-size: 1.4rem;
  }
}
.voice-btm > figure {
  margin-top: 28px;
  padding-inline: 100px;
}
@media all and (max-width: 896px) {
  .voice-btm > figure {
    padding-inline: 0;
  }
}
.voice-btm > figure img {
  border-radius: 32px;
}
@media all and (max-width: 896px) {
  .voice-btm > figure img {
    border-radius: 16px;
  }
}

.why {
  position: relative;
  z-index: 1;
  margin-top: 100px;
}
@media all and (max-width: 896px) {
  .why {
    margin-top: 50px;
  }
}
.why h2 {
  margin-bottom: -16px;
  text-align: right;
  font-size: 10rem;
  letter-spacing: 4px;
  white-space: nowrap;
  opacity: 1;
}
@media (max-width: 1280px) {
  .why h2 {
    margin-bottom: -10px;
    font-size: 6vw;
  }
}
@media all and (max-width: 896px) {
  .why h2 {
    margin-bottom: -5px;
    text-align: center;
    font-size: 2.8rem;
  }
}
.why .why-inner {
  padding-left: 240px;
}
@media all and (max-width: 896px) {
  .why .why-inner {
    padding-left: 0;
  }
}
.why .why-inner .box {
  position: relative;
  border: 3px solid #62a6de;
  padding: 4vw 4vw 4vw 7vw;
  line-height: 2;
}
@media all and (max-width: 896px) {
  .why .why-inner .box {
    padding: 12px 18px;
  }
}
.why .why-inner .box h3 {
  margin-bottom: 20px;
  color: #62a6de;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.2em;
}
@media all and (max-width: 896px) {
  .why .why-inner .box h3 {
    margin-bottom: 16px;
    line-height: 1.6;
    font-size: 2.4rem;
  }
}
.why .why-inner .box dl {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  margin-top: 16px;
  color: #333;
  font-size: 1.4rem;
  font-weight: 700;
}
@media all and (max-width: 896px) {
  .why .why-inner .box dl {
    margin-top: 8px;
  }
}
.why .why-inner .box dl dd {
  margin-left: 1em;
  font-size: 1.8rem;
}
.why .why-inner .box figure {
  position: absolute;
  top: 50%;
  left: -20vw;
  width: 24vw;
  translate: 0 -50%;
}
@media all and (max-width: 896px) {
  .why .why-inner .box figure {
    position: static;
    width: 100%;
    margin-top: 16px;
    text-align: center;
    translate: 0;
  }
}
.why .why-inner .box figure img {
  border-radius: 16px;
}
@media all and (max-width: 896px) {
  .why .why-inner .box figure img {
    width: 65%;
    border-radius: 8px;
  }
}

.sns {
  position: relative;
  margin-top: -20vw;
  padding-block: 25vw 100px;
  background: url(../images/bg_dot.png) 0/20px auto;
  text-align: center;
}
@media all and (max-width: 896px) {
  .sns {
    margin-top: -150px;
    padding-block: 200px 50px;
  }
}
@media (max-width: 1600px) {
  .sns .inner {
    max-width: calc(100% - 18vw);
  }
}
@media all and (max-width: 896px) {
  .sns .inner {
    max-width: calc(100% - 30px);
  }
}
.sns h2 {
  position: absolute;
  bottom: 90px;
  right: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  pointer-events: none;
}
@media all and (max-width: 896px) {
  .sns h2 {
    position: static;
    width: calc(100% - 30px);
    margin-inline: auto;
    writing-mode: horizontal-tb;
  }
}
.sns h3 {
  position: relative;
  margin-bottom: 48px;
  padding-bottom: 24px;
  font-size: 4.8rem;
  font-weight: 700;
}
@media all and (max-width: 896px) {
  .sns h3 {
    margin-bottom: 16px;
    padding-bottom: 16px;
    font-size: 2.4rem;
  }
  .sns h3 + p {
    text-align: left;
  }
}
.sns h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 64px;
  height: 6px;
  background: #62a6de;
  translate: -50%;
}
@media all and (max-width: 896px) {
  .sns h3::after {
    width: 32px;
    height: 3px;
  }
}
.sns ul {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
}
@media all and (max-width: 896px) {
  .sns ul {
    flex-direction: column;
    gap: 24px;
    margin-top: 24px;
  }
}
.sns ul li {
  width: calc((100% - 48px) / 2);
  padding: 40px;
  border-radius: 16px;
  background: #fff;
  color: #333;
  font-size: 1.8rem;
  line-height: 2;
}
@media all and (max-width: 896px) {
  .sns ul li {
    width: 100%;
    padding: 20px;
    border-radius: 8px;
    font-size: 1.6rem;
  }
}
.sns ul li h4 {
  margin-bottom: 4px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media all and (max-width: 896px) {
  .sns ul li h4 {
    font-size: 2rem;
  }
}
.sns ul li figure {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  position: relative;
  margin-block: 16px 24px;
}
.sns ul li > a {
  display: flex;
  justify-content: center;
  width: 400px;
  max-width: 100%;
  margin-inline: auto;
  padding: 16px;
  border-radius: 100vmax;
  border: 3px solid #62a6de;
  color: #62a6de;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}
@media all and (max-width: 896px) {
  .sns ul li > a {
    width: 100%;
  }
}
.sns ul li > a[target=_blank] {
  position: relative;
  padding-right: 32px;
}
.sns ul li > a[target=_blank]::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 14px;
  height: 13px;
  background: url(../images/ico_blank.svg) no-repeat center/cover;
  translate: 0 -50%;
  transition: 0.3s;
}
@media (hover: hover) {
  .sns ul li > a:hover {
    background: #62a6de;
    color: #fff;
    opacity: 1;
  }
  .sns ul li > a:hover::after {
    filter: brightness(0) invert(1);
  }
}
.sns ul li > a + a {
  margin-top: 10px;
}

.news {
  position: relative;
  padding-block: 100px;
}
@media all and (max-width: 896px) {
  .news {
    padding-block: 50px;
  }
}
.news h2 {
  position: absolute;
  left: -10px;
  bottom: 70px;
}
@media (max-width: 1279px) {
  .news h2 {
    position: static;
    margin-left: 15px;
  }
}
@media all and (max-width: 896px) {
  .news h2 {
    position: static;
    width: calc(100% - 30px);
    margin: 0 auto 16px;
    text-align: center;
  }
}
.news .inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
}
@media (max-width: 1279px) {
  .news .inner {
    flex-direction: column;
  }
}
@media all and (max-width: 896px) {
  .news .inner {
    gap: 24px;
  }
}
.news .inner h3 {
  flex: none;
  position: relative;
  width: 30%;
  padding-bottom: 24px;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.6;
}
@media (max-width: 1279px) {
  .news .inner h3 {
    width: auto;
  }
}
@media all and (max-width: 896px) {
  .news .inner h3 {
    align-self: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    font-size: 2.4rem;
  }
}
.news .inner h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 64px;
  height: 6px;
  background: #62a6de;
}
@media all and (max-width: 896px) {
  .news .inner h3::after {
    width: 32px;
    height: 3px;
    left: 50%;
    translate: -50%;
  }
}
.news .inner .coming, .news .inner ul {
  width: calc(70% - 80px);
}
@media (max-width: 1279px) {
  .news .inner .coming, .news .inner ul {
    width: 100%;
  }
}
.news .inner .coming {
  margin-top: 24px;
  text-align: center;
}
@media (max-width: 1279px) {
  .news .inner .coming {
    margin-top: 0;
    text-align: left;
  }
}
@media all and (max-width: 896px) {
  .news .inner .coming {
    text-align: center;
  }
}
.news .inner ul {
  border-top: 1px solid rgba(55, 55, 55, 0.2);
  color: #333;
}
.news .inner ul li {
  border-bottom: 1px solid rgba(55, 55, 55, 0.2);
}
.news .inner ul li a, .news .inner ul li div {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  padding: 48px 64px 48px 32px;
  line-height: 2;
}
@media all and (max-width: 896px) {
  .news .inner ul li a, .news .inner ul li div {
    gap: 16px;
    padding: 16px 24px 16px 0;
  }
}
.news .inner ul li a figure, .news .inner ul li div figure {
  flex: none;
  width: 180px;
}
@media all and (max-width: 896px) {
  .news .inner ul li a figure, .news .inner ul li div figure {
    width: 80px;
  }
}
.news .inner ul li a figure img, .news .inner ul li div figure img {
  border-radius: 8px;
}
@media all and (max-width: 896px) {
  .news .inner ul li a figure img, .news .inner ul li div figure img {
    height: 80px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.news .inner ul li a dt, .news .inner ul li div dt {
  margin-bottom: 8px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.2rem;
}
@media all and (max-width: 896px) {
  .news .inner ul li a dt, .news .inner ul li div dt {
    font-size: 1.8rem;
    line-height: 1.6;
  }
}
.news .inner ul li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 32px;
  width: 16px;
  height: 14px;
  background: url(../images/ico_arrow.svg) no-repeat center/cover;
  translate: 0 -50%;
  transition: 0.3s;
}
@media all and (max-width: 896px) {
  .news .inner ul li a::after {
    right: 0;
  }
}
@media (hover: hover) {
  .news .inner ul li a:hover {
    opacity: 1;
    background: #f0f7fc;
  }
  .news .inner ul li a:hover::after {
    right: 22px;
  }
}

.entry {
  padding-block: 100px;
  background: url(../images/bg_dot.png) 0/20px auto;
}
@media all and (max-width: 896px) {
  .entry {
    padding-block: 50px;
  }
}
.entry .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 700;
}
.entry .inner h3 {
  position: relative;
  margin-bottom: 48px;
  padding-bottom: 24px;
  font-size: 4.8rem;
  line-height: 1.6;
}
@media all and (max-width: 896px) {
  .entry .inner h3 {
    margin-bottom: 24px;
    padding-bottom: 16px;
    font-size: 2.4rem;
  }
}
.entry .inner h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 64px;
  height: 6px;
  background: #62a6de;
  translate: -50%;
}
@media all and (max-width: 896px) {
  .entry .inner h3::after {
    width: 32px;
    height: 3px;
  }
}
.entry .inner h3 + p {
  position: relative;
  padding-inline: 40px;
  text-align: center;
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0.1rem;
}
@media all and (max-width: 896px) {
  .entry .inner h3 + p {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}
.entry .inner h3 + p::before, .entry .inner h3 + p::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 32px;
  height: 49px;
  background: url(../images/ico_blow.svg) no-repeat center/cover;
  filter: brightness(0);
}
.entry .inner h3 + p::before {
  left: 0;
}
.entry .inner h3 + p::after {
  right: 0;
  scale: -1 1;
}
.entry .inner > a {
  display: flex;
  justify-content: center;
  width: 600px;
  margin: 24px auto 0;
  padding: 32px;
  border: 3px solid #f9e680;
  border-radius: 100vmax;
  background: #f9e680;
  font-size: 2.4rem;
  line-height: 1;
}
@media all and (max-width: 896px) {
  .entry .inner > a {
    width: 100%;
    padding: 12px 16px 16px;
    font-size: 1.8rem;
  }
}
.entry .inner > a[target=_blank] {
  position: relative;
}
.entry .inner > a[target=_blank]::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 32px;
  width: 20px;
  height: 18px;
  background: url(../images/ico_blank.svg) no-repeat center/cover;
  translate: 0 -50%;
  filter: brightness(0);
}
@media all and (max-width: 896px) {
  .entry .inner > a[target=_blank]::after {
    width: 18px;
    height: 16px;
  }
}
@media (hover: hover) {
  .entry .inner > a:hover {
    background: #fff;
    opacity: 1;
  }
}
.entry .inner aside {
  width: 800px;
  /*margin: 100px auto 0;*/
  margin: 0 auto;
}
@media all and (max-width: 896px) {
  .entry .inner aside {
    width: 100%;
    margin-top: 50px;
  }
}

@-webkit-keyframes fade-menu {
  0% {
    opacity: 0;
    translate: -20px;
  }
  100% {
    opacity: 1;
    translate: 0;
  }
}

@keyframes fade-menu {
  0% {
    opacity: 0;
    translate: -20px;
  }
  100% {
    opacity: 1;
    translate: 0;
  }
}
/* blockskip */
/* ============================================ */
#blockskip {
  overflow: hidden;
  height: 0;
  background: #ddd;
  text-align: center;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
  padding: 1.5vw 2.08vw;
  background: #fff;
  transition: 0.3s;
}
@media all and (max-width: 896px) {
  header {
    height: 70px;
    padding-inline: 15px;
  }
}
header .logo {
  position: relative;
  z-index: 11;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.8px;
}
@media (max-width: 1120px) {
  header .logo {
    font-size: 1.6rem;
  }
}
header .logo a {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media all and (max-width: 896px) {
  header .logo a {
    gap: 12px;
  }
}
@media (hover: hover) {
  header .logo a:hover {
    opacity: 1;
  }
}
header .logo a img {
  width: 130px;
}
@media (max-width: 1120px) {
  header .logo a img {
    width: 100px;
  }
}
header #ham-menu {
  font-size: 1.6rem;
  font-weight: 700;
}
@media (max-width: 1280px) {
  header #ham-menu {
    font-size: 1.4rem;
  }
}
@media (max-width: 1120px) {
  header #ham-menu {
    font-size: 1.2rem;
  }
}
@media all and (max-width: 896px) {
  header #ham-menu {
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 10;
    background: #fff;
    width: 100%;
    height: 100%;
    padding: 60px 0 0;
    font-size: 1.8rem;
    transition: transform 0.2s ease-out 0s;
  }
}
@media all and (max-width: 896px) {
  header #ham-menu nav {
    height: 100%;
    padding: 10px 15px 20px;
    overflow-y: auto;
  }
}
header #ham-menu nav ul {
  display: flex;
  align-items: center;
  gap: 1.4vw;
}
@media all and (max-width: 896px) {
  header #ham-menu nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
}
header #ham-menu nav ul li {
  /*
  &:nth-last-child(2) {
    @include g.landscape {
      margin-top: 28px;
    }
    a {
      border: 3px solid #f9e680;
      background: #f9e680;
      @media (max-width: 1120px) {
        width: 100px;
      }
      @include g.landscape {
        width: 100%;
      }
      @media(hover:hover) {
        &:hover {
          //opacity: 1;
          background: #fff;
          color: g.$font_c;
        }
      }
    }
  }
  */
}
@media (hover: hover) {
  header #ham-menu nav ul li a:hover {
    opacity: 1;
    color: #62a6de;
  }
}
header #ham-menu nav ul li.current a {
  color: #62a6de;
}
@media all and (max-width: 896px) {
  header #ham-menu nav ul li {
    opacity: 0;
    translate: 0 -20px;
  }
}
@media all and (max-width: 896px) {
  header #ham-menu nav ul li:not(:last-child):not(:nth-last-child(2)) {
    border-bottom: 1px solid #dbdee0;
  }
}
@media all and (max-width: 896px) {
  header #ham-menu nav ul li a {
    display: flex;
    position: relative;
    padding: 18px 40px 18px 18px;
  }
  header #ham-menu nav ul li a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 18px;
    width: 12px;
    height: 12px;
    background: url(../images/common/ico_ar.svg) no-repeat center/cover;
    transform: translateY(-50%);
  }
  header #ham-menu nav ul li a[target=_blank]::after {
    rotate: -45deg;
    right: 14px;
  }
}
header #ham-menu nav ul li:last-child a {
  display: flex;
  justify-content: center;
  width: 220px;
  padding-block: 0.5vw;
  border-radius: 100vmax;
}
@media (max-width: 1280px) {
  header #ham-menu nav ul li:last-child a {
    width: 180px;
  }
}
@media all and (max-width: 896px) {
  header #ham-menu nav ul li:last-child a {
    padding: 16px 10px;
    justify-content: center;
  }
  header #ham-menu nav ul li:last-child a::after {
    content: none;
  }
}
@media all and (max-width: 896px) {
  header #ham-menu nav ul li:last-child {
    margin-top: 20px;
  }
}
header #ham-menu nav ul li:last-child a {
  border: 3px solid #0372dd;
  background: #0372dd;
  color: #fff;
}
@media (max-width: 1120px) {
  header #ham-menu nav ul li:last-child a {
    width: 150px;
  }
}
@media all and (max-width: 896px) {
  header #ham-menu nav ul li:last-child a {
    width: 100%;
  }
}
@media (hover: hover) {
  header #ham-menu nav ul li:last-child a:hover {
    background: #fff;
    color: #0372dd;
  }
}
header #menu-icon span, header #menu-icon::before, header #menu-icon::after {
  position: absolute;
  left: 6px;
  width: 28px;
  height: 2px;
  background: #000;
  transition: 0.3s;
}
header #menu-icon {
  display: none;
}
@media all and (max-width: 896px) {
  header #menu-icon {
    display: block;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 11;
    width: 40px;
    height: 40px;
    cursor: pointer;
  }
}
header #menu-icon::before, header #menu-icon::after {
  content: "";
}
header #menu-icon::before {
  top: 10px;
}
header #menu-icon::after {
  bottom: 10px;
}
header #menu-icon span {
  display: inline-block;
  top: 19px;
}
header #menu-cb {
  display: none;
}
@media all and (max-width: 896px) {
  header #menu-cb:checked ~ #ham-menu {
    transform: translate(-100%);
  }
}
@media all and (max-width: 896px) and (max-width: 896px) {
  header #menu-cb:checked ~ #ham-menu li {
    -webkit-animation: fade-menu 0.5s ease-out 0.3s alternate forwards;
            animation: fade-menu 0.5s ease-out 0.3s alternate forwards;
  }
  header #menu-cb:checked ~ #ham-menu li:nth-child(1) {
    -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s;
  }
  header #menu-cb:checked ~ #ham-menu li:nth-child(2) {
    -webkit-animation-delay: 0.35s;
            animation-delay: 0.35s;
  }
  header #menu-cb:checked ~ #ham-menu li:nth-child(3) {
    -webkit-animation-delay: 0.4s;
            animation-delay: 0.4s;
  }
  header #menu-cb:checked ~ #ham-menu li:nth-child(4) {
    -webkit-animation-delay: 0.45s;
            animation-delay: 0.45s;
  }
  header #menu-cb:checked ~ #ham-menu li:nth-child(5) {
    -webkit-animation-delay: 0.5s;
            animation-delay: 0.5s;
  }
  header #menu-cb:checked ~ #ham-menu li:nth-child(6) {
    -webkit-animation-delay: 0.55s;
            animation-delay: 0.55s;
  }
  header #menu-cb:checked ~ #ham-menu li:nth-child(7) {
    -webkit-animation-delay: 0.6s;
            animation-delay: 0.6s;
  }
  header #menu-cb:checked ~ #ham-menu li:nth-child(8) {
    -webkit-animation-delay: 0.65s;
            animation-delay: 0.65s;
  }
}
@media all and (max-width: 896px) {
  header #menu-cb:checked ~ #menu-icon {
    position: fixed;
  }
  header #menu-cb:checked ~ #menu-icon::before {
    transform: translateY(9px) rotate(-315deg);
  }
  header #menu-cb:checked ~ #menu-icon::after {
    transform: translateY(-9px) rotate(315deg);
  }
  header #menu-cb:checked ~ #menu-icon span {
    opacity: 0;
  }
}

/*スマホ時メニューを開いたときにメインコンテンツ固定*/
.scroll-prevent {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
}

/* footer */
/* ============================================ */
footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  padding: 16px 50px;
  background: #000;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 250;
}
@media all and (max-width: 896px) {
  footer {
    padding-inline: 20px;
  }
}
@media (hover: hover) {
  footer a:hover {
    opacity: 1;
  }
}
footer p a {
  color: #ed7737;
  text-decoration: underline;
}
footer ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0 16px;
  margin-right: 50px;
}
@media all and (max-width: 896px) {
  footer ul {
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
  }
}
footer ul li a {
  position: relative;
  padding-left: 18px;
}
footer ul li a::before {
  content: "";
  position: absolute;
  top: calc(50% + 1px);
  left: 0;
  width: 13px;
  height: 14px;
  background: url(../images/ico_ft_arrow.svg) no-repeat center/cover;
  translate: 0 -50%;
}
@media (hover: hover) {
  footer ul li a:hover {
    color: #ed7737;
  }
}
@media all and (max-width: 896px) {
  footer small {
    display: flex;
    margin-top: 20px;
  }
}
footer .pagetop {
  cursor: pointer;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  width: 80px;
  height: 80px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #62a6de;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
@media all and (max-width: 896px) {
  footer .pagetop {
    right: 15px;
    bottom: 15px;
    width: 40px;
    height: 40px;
    border-width: 1px;
  }
}
footer .pagetop.is-show {
  opacity: 1;
  visibility: visible;
}
footer .pagetop::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  background: url(../images/ico_arrow.svg) no-repeat center/cover;
  rotate: -90deg;
  filter: brightness(0) invert(1);
}
@media all and (max-width: 896px) {
  footer .pagetop::after {
    width: 10px;
    height: 10px;
    margin: -5px 0 0 -5px;
  }
}
/*# sourceMappingURL=layout.css.map */