@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-size */
/* ============================================ */
/* font-family */
/* ============================================ */
/* common */
/* ============================================ */
body {
  background: #fff;
  color: #3D2E22;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: clamp(0.875rem, 0.6528rem + 0.3968vw, 1rem);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.02em;
  min-height: 100vh;
}
body.is-fixed {
  height: 100%;
  overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

.span_br {
  display: inline-block;
}

.link_tel {
  pointer-events: none;
}
@media all and (max-width: 896px) {
  .link_tel {
    pointer-events: auto;
  }
}

.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: 3rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

@media all and (max-width: 896px) {
  .fz48-sm {
    font-size: 3rem !important;
  }
  .fz32-sm {
    font-size: 2rem !important;
  }
  .fz30-sm {
    font-size: 1.875rem !important;
  }
  .fz28-sm {
    font-size: 1.75rem !important;
  }
  .fz26-sm {
    font-size: 1.625rem !important;
  }
  .fz24-sm {
    font-size: 1.5rem !important;
  }
  .fz22-sm {
    font-size: 1.375rem !important;
  }
  .fz20-sm {
    font-size: 1.25rem !important;
  }
  .fz18-sm {
    font-size: 1.125rem !important;
  }
  .fz16-sm {
    font-size: 1rem !important;
  }
  .fz14-sm {
    font-size: 0.875rem !important;
  }
  .fz12-sm {
    font-size: 0.75rem !important;
  }
  .fz10-sm {
    font-size: 0.625rem !important;
  }
}
.width {
  container-type: inline-size;
  max-width: 1400px;
  width: calc(100% - 80px);
  margin: 0 auto;
}
@media all and (max-width: 896px) {
  .width {
    width: calc(100% - 40px);
  }
}

.outer {
  overflow: hidden;
}

/* 共通パーツ */
/* ============================================ */
.common-fixed {
  display: none;
}
@media all and (max-width: 896px) {
  .common-fixed {
    display: block;
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 500;
  }
}
.common-fixed__list {
  display: flex;
}
.common-fixed__list__item {
  width: 50%;
}
.common-fixed__list__item.--mone .common-fixed__list__link {
  background: #4F6C65;
}
.common-fixed__list__item.--mone .common-fixed__list__link::before {
  background-image: url("../images/common/icon_mone_white.svg");
  margin-bottom: 0.2em;
}
.common-fixed__list__link {
  background: #8A9BCE;
  color: #fff;
  font-size: clamp(0.75rem, 0.66rem + 0.3839vw, 0.875rem);
  font-weight: 500;
  padding: 15px 10px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6em;
}
.common-fixed__list__link::before {
  flex-shrink: 0;
  content: "";
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  background: url("../images/common/icon_reserve_white.svg") center center/contain no-repeat;
}

.common-btn {
  text-align: center;
  width: 100%;
  max-width: 248px;
}
.common-btn.--white .common-btn__link {
  padding-right: 48px;
}
.common-btn.--white .common-btn__link::before {
  border-color: #fff;
}
.common-btn.--white .common-btn__link::after {
  background: #fff;
  width: 0%;
  left: 0;
}
@media (hover: hover) {
  .common-btn.--white .common-btn__link:hover::after {
    width: 100%;
  }
}
.common-btn.--center {
  margin-inline: auto;
}
.common-btn__link {
  box-sizing: border-box;
  padding: 20px;
  display: block;
  border-radius: 9999px;
  font-family: "Montserrat", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 10;
}
@media (hover: hover) {
  .common-btn__link:hover {
    opacity: 1;
    color: #2C2C66;
  }
  .common-btn__link:hover::after {
    width: 0%;
  }
  .common-btn__link:hover .common-btn__arrow {
    background-image: url("../images/common/arrow_right.svg");
  }
}
.common-btn__link::before {
  content: "";
  display: block;
  border: 1px solid #2C2C66;
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s ease-out;
}
.common-btn__link::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #2C2C66;
  border-radius: 9999px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -10;
  transition: all 0.3s ease-out;
}
.common-btn__arrow {
  width: 18px;
  height: 18px;
  background: url("../images/common/arrow_right_white.svg") center center/contain no-repeat;
  position: absolute;
  top: 50%;
  right: 24px;
  translate: 0 -50%;
  transition: all 0.3s ease-out;
}

.common-ttl.--center {
  text-align: center;
  word-break: keep-all;
}
.common-ttl.--white .common-ttl__jp {
  color: #fff;
}
.common-ttl.--white .common-ttl__en {
  color: #B7B8BC;
}
.common-ttl__jp {
  font-size: clamp(1.5rem, 0.3889rem + 1.9841vw, 2.125rem);
  letter-spacing: 0.04em;
}
.common-ttl__en {
  font-family: "Montserrat", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: clamp(0.875rem, 0.7639rem + 0.1984vw, 0.9375rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.1em;
  margin-top: 8px;
  color: #747476;
}
@media all and (max-width: 896px) {
  .common-ttl__en {
    margin-top: 4px;
  }
}

.common-link {
  padding: 112px 0;
  background: url("../images/common/link_bg.jpg") center center/cover no-repeat;
  position: relative;
}
@media all and (max-width: 896px) {
  .common-link {
    padding: 40px 0;
  }
}
.common-link::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
}
.common-link__wrapper {
  position: relative;
  z-index: 10;
}
.common-link__list {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: clamp(1rem, 0.7778rem + 0.3968vw, 1.125rem);
}
@media all and (max-width: 896px) {
  .common-link__list {
    flex-wrap: wrap;
    gap: 28px 20px;
  }
}
.common-link__item {
  width: 314px;
}
@media all and (max-width: 896px) {
  .common-link__item {
    width: calc((100% - 20px) / 2);
  }
}
@media all and (max-width: 480px) {
  .common-link__item {
    width: 100%;
  }
}
.common-link__item.--faq .common-link__link::before {
  background-image: url("../images/common/icon_faq.svg");
}
.common-link__link {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 32px 48px 32px 32px;
  position: relative;
  min-height: 130px;
}
.common-link__link::before {
  flex-shrink: 0;
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url("../images/common/icon_sightseeing.svg") center center/contain no-repeat;
}
.common-link__link::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url("../images/common/arrow_right.svg") center center/contain no-repeat;
  position: absolute;
  top: 50%;
  right: 20px;
  translate: 0 -50%;
}

/* move */
/* ============================================ */
@-webkit-keyframes navOpen {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes navOpen {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.moveTop {
  opacity: 0;
  transition: 1s;
  transform: translate(0, 80px);
}
.moveTop.current {
  opacity: 1;
  transform: translate(0, 0);
}

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

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

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

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

/* header */
/* ============================================ */
.header {
  width: 100%;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 800;
}
.header-wrapper {
  width: 100%;
  height: 80px;
  padding-left: 40px;
  background: #fff;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
@media all and (max-width: 1367px) {
  .header-wrapper {
    padding-left: 32px;
  }
}
@media all and (max-width: 896px) {
  .header-wrapper {
    height: 52px;
    padding-left: 8px;
    gap: 8px;
  }
}
.header-inner {
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.header-logo {
  flex-shrink: 0;
}
@media all and (max-width: 896px) {
  .header-logo {
    flex-shrink: 1;
  }
}
@media all and (max-width: 1367px) {
  .header-logo img {
    width: 260px;
  }
}
@media all and (max-width: 896px) {
  .header-logo img {
    width: 190px;
  }
}
@media all and (max-width: 1025px) {
  .header-contents {
    display: none;
  }
}
.header-menu {
  font-size: clamp(0.8125rem, 0.3rem + 0.8vw, 1rem);
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px 28px;
}
@media all and (max-width: 1367px) {
  .header-menu {
    gap: 10px 22px;
  }
}
.header-menu > li.current {
  color: #2C2C66;
}
.header-link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.header-language {
  color: #000;
  margin-right: 32px;
  position: relative;
}
@media all and (max-width: 1367px) {
  .header-language {
    margin-right: 16px;
  }
}
@media all and (max-width: 896px) {
  .header-language {
    margin-right: 0;
  }
}
.header-language__trigger {
  cursor: pointer;
  padding: 4px 20px;
  border: 1px solid #000;
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  font-family: "Montserrat", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 0.9375rem;
}
@media all and (max-width: 896px) {
  .header-language__trigger {
    width: 52px;
    height: 52px;
    background: #F4F8FA;
    padding: 0;
    border: none;
    border-radius: 0;
  }
}
.header-language__trigger::before {
  flex-shrink: 0;
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url("../images/common/icon_lang.svg") center center/contain no-repeat;
}
@media all and (max-width: 896px) {
  .header-language__trigger::before {
    width: 20px;
    height: 20px;
  }
}
.header-language__trigger__txt {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media all and (max-width: 896px) {
  .header-language__trigger__txt {
    display: none;
  }
}
.header-language__contents {
  display: none;
  width: 100%;
  padding-top: 16px;
  position: absolute;
  left: 50%;
  translate: -50% 0;
}
@media all and (max-width: 896px) {
  .header-language__contents {
    width: 100px;
    padding-top: 10px;
  }
}
.header-language__contents.--open {
  display: block;
  opacity: 0;
  -webkit-animation: navOpen 0.3s ease-out forwards;
          animation: navOpen 0.3s ease-out forwards;
}
.header-language__list {
  text-align: center;
  padding: 8px 16px;
  background: #fff;
  font-size: 0.875rem;
  border-radius: 4px;
}
@media all and (max-width: 896px) {
  .header-language__list {
    padding: 4px 12px;
    font-size: 0.75rem;
  }
}
.header-language__item {
  border-top: 1px solid #ccc;
}
.header-language__item:first-of-type {
  border-top: none;
}
.header-language__link {
  cursor: pointer;
  display: block;
  padding: 6px 0;
}
@media (hover: hover) {
  .header-language__link:hover {
    opacity: 0.7;
  }
}
@media all and (max-width: 896px) {
  .header-mone {
    display: none;
  }
}
.header-mone__link {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 6px;
  width: 80px;
  height: 80px;
  background: #4F6C65;
  color: #fff;
}
@media all and (max-width: 896px) {
  .header-mone__link {
    width: 52px;
    height: 52px;
  }
}
.header-mone__link::before {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  background: url("../images/common/icon_mone_white.svg") center center/contain no-repeat;
}
@media all and (max-width: 896px) {
  .header-mone__link::before {
    width: 26px;
    height: 26px;
  }
}
.header-mone__link__txt {
  text-align: center;
  font-size: 0.75rem;
}
@media all and (max-width: 896px) {
  .header-mone__link__txt {
    display: none;
  }
}
@media all and (max-width: 896px) {
  .header-reserve {
    display: none;
  }
}
.header-reserve__link {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 6px;
  width: 80px;
  height: 80px;
  background: #8A9BCE;
  color: #fff;
}
@media all and (max-width: 896px) {
  .header-reserve__link {
    width: 52px;
    height: 52px;
  }
}
.header-reserve__link::before {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  background: url("../images/common/icon_reserve_white.svg") center center/contain no-repeat;
}
.header-reserve__link__txt {
  text-align: center;
  font-size: 0.75rem;
}
@media all and (max-width: 896px) {
  .header-reserve__link__txt {
    display: none;
  }
}
.header-hamburger {
  text-align: center;
  width: 80px;
  height: 80px;
  background: #2C2C66;
  color: #fff;
  padding-top: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 7px;
  cursor: pointer;
  position: relative;
  z-index: 600;
}
@media all and (max-width: 896px) {
  .header-hamburger {
    width: 52px;
    height: 52px;
    padding-top: 0;
  }
}
.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__box {
  width: 34px;
  height: 18px;
  position: relative;
}
@media all and (max-width: 896px) {
  .header-hamburger__box {
    width: 22px;
    height: 12px;
  }
}
.header-hamburger__line {
  display: block;
  width: 34px;
  height: 1px;
  background: #fff;
  transition: rotate 0.3s ease-out, opacity 0.1s ease-out;
  position: absolute;
  inset: 0;
  margin: auto;
}
@media all and (max-width: 896px) {
  .header-hamburger__line {
    width: 22px;
  }
}
.header-hamburger__line:nth-of-type(1) {
  translate: 0 -8px;
}
@media all and (max-width: 896px) {
  .header-hamburger__line:nth-of-type(1) {
    translate: 0 -5px;
  }
}
.header-hamburger__line:nth-of-type(3) {
  translate: 0 8px;
}
@media all and (max-width: 896px) {
  .header-hamburger__line:nth-of-type(3) {
    translate: 0 5px;
  }
}
.header-hamburger__txt {
  font-family: "Montserrat", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 0.8125rem;
}
@media all and (max-width: 896px) {
  .header-hamburger__txt {
    display: none;
  }
}
.header-nav {
  width: 100%;
  max-width: 400px;
  height: 100dvh;
  padding: 140px 32px 80px;
  background: #fff;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 400;
  translate: 100% 0;
  transition: all 0.3s linear;
  overflow: auto;
}
@media all and (max-width: 896px) {
  .header-nav {
    padding: 80px 32px 64px;
  }
}
.header-nav.--open {
  translate: 0 0;
}
.header-nav__item {
  border-bottom: 1px solid #ccc;
}
.header-nav__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
  padding: 1em 0;
}
.header-nav__icon {
  flex-shrink: 0;
  display: block;
  width: 18px;
  height: 18px;
  background: url("../images/common/arrow_right.svg") center center/contain no-repeat;
}
@media all and (max-width: 896px) {
  .header-nav__icon {
    width: 16px;
    height: 16px;
  }
}
.header-nav__reserve {
  margin-top: 32px;
}
.header-nav__reserve__link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 20px 16px;
  height: 100%;
  border: 1px solid #8A9BCE;
  background: #8A9BCE;
  color: #fff;
  font-size: 1rem;
}
.header-nav__reserve__link::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url("../images/common/icon_reserve_white.svg") center center/contain no-repeat;
}
.header .overlay {
  display: block;
  width: 0;
  height: 0;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 200;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}
.header .overlay.--open {
  width: 100%;
  height: 100dvh;
  opacity: 1;
}

/* footer */
/* ============================================ */
.pagetop {
  padding-top: 64px;
  position: relative;
}
@media all and (max-width: 896px) {
  .pagetop {
    padding-top: 42px;
  }
}
.pagetop-btn {
  cursor: pointer;
  width: 64px;
  height: 64px;
  background: #2C2C66;
  display: grid;
  place-content: center;
  margin-right: 0;
  margin-left: auto;
  transition: all 0.3s ease-out;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 800;
}
@media all and (max-width: 896px) {
  .pagetop-btn {
    width: 42px;
    height: 42px;
  }
}
.pagetop-btn.--fixed {
  position: fixed;
}
.pagetop-btn img {
  width: 24px;
}
@media all and (max-width: 896px) {
  .pagetop-btn img {
    width: 18px;
  }
}

.footer {
  padding: 100px 0;
  background: #353535;
  color: #fff;
  position: -webkit-sticky;
  position: sticky;
  top: 100dvh;
  z-index: 400;
}
@media all and (max-width: 896px) {
  .footer {
    padding: 40px 0;
  }
}
@media all and (max-width: 896px) {
  .footer-logo {
    text-align: center;
  }
}
@media all and (max-width: 896px) {
  .footer-logo img {
    width: 292px;
  }
}
.footer-second {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #fff;
}
.footer-second__container {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}
@media all and (max-width: 896px) {
  .footer-second__container {
    flex-direction: column;
    gap: 48px;
  }
}
.footer-second__inner {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.footer-second__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  font-size: 1rem;
}
@media all and (max-width: 896px) {
  .footer-second__nav {
    display: none;
  }
}
.footer-second__block {
  margin-top: 72px;
}
@media all and (max-width: 896px) {
  .footer-second__block {
    margin-top: 0;
  }
}
.footer-second__address {
  font-size: 0.875rem;
}
@media all and (max-width: 896px) {
  .footer-second__address {
    text-align: center;
  }
}
.footer-second__tel {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  font-family: "Montserrat", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  margin-top: 4px;
}
@media all and (max-width: 896px) {
  .footer-second__tel {
    justify-content: center;
  }
}
.footer-second__tel__item {
  display: flex;
}
.footer-second__tel__item dt {
  flex-shrink: 0;
}
.footer-second__detail {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  margin-top: 40px;
}
@media all and (max-width: 896px) {
  .footer-second__detail {
    display: none;
  }
}
.footer-second__link {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.footer-second__btn {
  display: flex;
  gap: 16px;
}
@media all and (max-width: 896px) {
  .footer-second__btn {
    display: none;
  }
}
.footer-second__btn__item {
  width: 240px;
}
.footer-second__btn__item.--contact .footer-second__btn__link::after {
  background-image: url("../images/common/icon_mail_white.svg");
}
.footer-second__btn__link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 16px;
  height: 100%;
  border: 1px solid #fff;
  font-size: 1rem;
}
.footer-second__btn__link::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url("../images/common/icon_calendar_white.svg") center center/contain no-repeat;
}
.footer-second__sns {
  inline-size: -webkit-fit-content;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  margin: 32px 0 0 auto;
}
@media all and (max-width: 896px) {
  .footer-second__sns {
    margin: 0 auto;
  }
}
.footer-second__sns__txt {
  font-family: "Montserrat", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 0.75rem;
}
.footer-second__sns__list {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 10px;
}
@media all and (max-width: 896px) {
  .footer-second__sns__list img {
    width: 32px;
  }
}
.footer-third {
  margin-top: 32px;
  padding-top: 40px;
  border-top: 1px solid #fff;
}
@media all and (max-width: 896px) {
  .footer-third {
    margin-top: 40px;
  }
}
.footer-third__banner {
  display: flex;
  align-items: center;
}
@media all and (max-width: 896px) {
  .footer-third__banner {
    flex-direction: column;
    gap: 32px;
  }
}
.footer-third__banner dt {
  padding-inline: 20px;
  flex-shrink: 0;
}
@media all and (max-width: 896px) {
  .footer-third__banner dt {
    text-align: center;
    padding: 0;
    width: 100%;
  }
}
.footer-third__banner dd {
  flex-grow: 1;
}
.footer-third__banner__list {
  max-width: 1000px;
  margin: 0 0 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media all and (max-width: 896px) {
  .footer-third__banner__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media all and (max-width: 480px) {
  .footer-third__banner__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.footer-copyright {
  font-family: "Montserrat", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: clamp(0.75rem, 0.7043rem + 0.1951vw, 0.875rem);
  font-weight: 500;
  margin-top: 48px;
}
@media all and (max-width: 896px) {
  .footer-copyright {
    text-align: center;
    margin-top: 64px;
  }
}