@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 */
/* ============================================ */
/* 共通部分 */
/* ============================================ */
html {
  font-size: 62.5%;
}

body {
  background: #fff;
  color: #333;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
}
@media all and (max-width: 896px) {
  body {
    font-size: 1.4rem;
  }
}
body.--fixed {
  height: 100%;
  overflow: hidden;
}
body.en {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
}
body.en .fixedarea-wrapper {
  max-width: 840px;
}
body.en .fixedarea__search button {
  width: 185px;
}
body.en .fixedarea.is-hidden .fixedarea__reservation {
  max-width: 230px;
}
body.cn {
  font-family: "Noto Sans SC", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
body.tw {
  font-family: "Noto Sans SC", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
body.ko {
  font-family: "Noto Sans KR", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

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

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

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

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

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

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

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

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

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

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

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

.span_br {
  display: inline-block;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.outer {
  overflow: clip;
}

input[type=text], input[type=date] {
  font-size: 16px;
}

/* 共通パーツ */
/* ============================================ */
.common-ehead {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  font-size: 3.6rem;
  color: #826A29;
}
@media all and (max-width: 896px) {
  .common-ehead {
    font-size: 2.4rem;
  }
}
.common-ehead p {
  word-break: keep-all;
  margin-top: 60px;
}
@media all and (max-width: 896px) {
  .common-ehead p {
    margin-top: 30px;
  }
}
.common-title {
  padding: 120px 0 60px;
}
@media all and (max-width: 896px) {
  .common-title {
    padding: 60px 0 30px;
  }
}
.common-title h1 {
  font-size: 4rem;
  font-weight: 600;
  color: #826A29;
  text-align: center;
  word-break: keep-all;
}
@media all and (max-width: 600px) {
  .common-title h1 {
    font-size: 3rem;
  }
}
.common-title h1.en {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
}
.common-title p {
  word-break: keep-all;
  margin-top: 60px;
  text-align: center;
  line-height: 1.8em;
}
@media all and (max-width: 896px) {
  .common-title p {
    margin-top: 30px;
  }
}
.common-btn {
  text-align: center;
  max-width: 320px;
  margin-inline: auto;
}
@media all and (max-width: 896px) {
  .common-btn {
    max-width: 260px;
  }
}
.common-btn > a {
  position: relative;
  display: inline-block;
  color: #826A29;
  border: 1px solid #826A29;
  background: transparent;
  padding: 12px 40px 12px 20px;
  font-weight: 500;
  min-width: 160px;
}
.common-btn > a::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  background: url(../../assets/images/common/icon_linearrow.svg) center center/cover no-repeat;
  width: 16px;
  height: 13px;
}
.common-btn > a:hover {
  color: #fff;
  background: #826A29;
  opacity: 1;
}
.common-btn > a:hover::after {
  filter: brightness(0) invert(1);
}
.common-linetit h1, .common-linetit h2, .common-linetit h3, .common-linetit h4, .common-linetit h5 {
  font-size: 2.6rem;
  font-weight: 500;
  padding-bottom: 20px;
}
@media all and (max-width: 896px) {
  .common-linetit h1, .common-linetit h2, .common-linetit h3, .common-linetit h4, .common-linetit h5 {
    font-size: 2rem;
    padding-bottom: 10px;
  }
}
.common-linetit__bottom {
  position: relative;
  width: 100%;
  height: 2px;
  background: #AEAEAE;
}
.common-linetit__bottom::before, .common-linetit__bottom::after {
  position: absolute;
  content: "";
  inset: 0;
}
.common-linetit__bottom::before {
  left: 0;
  width: 80px;
  height: 2px;
  background: #826A29;
}
@media all and (max-width: 480px) {
  .common-linetit__bottom::before {
    width: 50px;
  }
}
.common-linetit__bottom::after {
  left: 81px;
  width: 6px;
  height: 2px;
  background: #F7F7F7;
}
@media all and (max-width: 480px) {
  .common-linetit__bottom::after {
    left: 51px;
  }
}
.common-tit__midium {
  font-size: 2.2rem;
  font-weight: 500;
  padding-bottom: 10px;
  border-bottom: 1px solid #826A29;
}
@media all and (max-width: 896px) {
  .common-tit__midium {
    font-size: 1.7rem;
    padding-bottom: 5px;
  }
}
.common-tit__small {
  position: relative;
  font-size: 1.9rem;
  font-weight: 500;
  padding-left: 1.5em;
}
@media all and (max-width: 896px) {
  .common-tit__small {
    font-size: 1.6rem;
  }
}
.common-tit__small::before {
  position: absolute;
  content: "●";
  top: 5%;
  left: 0;
  font-size: 90%;
  color: #826A29;
}
@media all and (max-width: 896px) {
  .common-tit__small::before {
    top: 2%;
  }
}

/* 下層共通部分 */
/* ============================================ */
.second-main {
  padding: 48px 0;
  background: #826A29;
  color: #fff;
}
@media all and (max-width: 896px) {
  .second-main {
    padding: 28px 0;
  }
}
.second-main__ttl {
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  margin-inline: auto;
  font-size: 4rem;
  font-weight: 700;
}
@media all and (max-width: 896px) {
  .second-main__ttl {
    font-size: 2.4rem;
  }
}

.second-outer {
  padding-bottom: 100px;
}
@media all and (max-width: 896px) {
  .second-outer {
    padding-bottom: 60px;
  }
}

.breadcrumb {
  background: #ececec;
  padding: 10px;
}
.breadcrumb ul {
  display: flex;
  justify-content: flex-start;
  box-sizing: border-box;
  gap: 40px;
}
@media all and (max-width: 896px) {
  .breadcrumb ul {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
    width: 100%;
  }
}
@media all and (max-width: 480px) {
  .breadcrumb ul {
    gap: 30px;
  }
}
.breadcrumb ul li {
  position: relative;
  flex-shrink: 0;
  font-size: 1.4rem;
}
@media all and (max-width: 480px) {
  .breadcrumb ul li {
    font-size: 1.1rem;
  }
}
.breadcrumb ul li:first-child {
  margin-left: 0;
}
.breadcrumb ul li:last-child::after {
  content: none;
}
.breadcrumb ul li::after {
  content: "";
  position: absolute;
  background: url(../../assets/images/common/icon_arrow.svg) center center/cover no-repeat;
  right: -25px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  width: 8px;
  height: 8px;
  opacity: 0.6;
}
@media all and (max-width: 480px) {
  .breadcrumb ul li::after {
    right: -20px;
    top: 55%;
    width: 8px;
    height: 8px;
  }
}
.breadcrumb ul li a {
  display: block;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.breadcrumb ul li a:hover {
  opacity: 1;
}

.fixedarea {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  width: 100%;
  z-index: 201;
  overflow: visible;
  pointer-events: none;
}
@media (width <= 1200px) {
  .fixedarea {
    width: calc(100% - 40px);
  }
}
@media all and (max-width: 480px) {
  .fixedarea {
    bottom: 15px;
  }
}
.fixedarea.is-hidden .fixedarea-wrapper {
  max-width: 330px;
}
@media (width <= 1200px) {
  .fixedarea.is-hidden .fixedarea-wrapper {
    max-width: 100%;
  }
}
.fixedarea.is-hidden .fixedarea__reservation {
  max-width: 170px;
  background: #333;
}
.fixedarea.is-hidden .fixedarea__wrap {
  display: none;
}
.fixedarea.is-hidden .fixedarea__base {
  padding: 10px 0;
}
.fixedarea-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 25px;
  max-width: 790px;
  margin: auto 0 auto auto;
  transition: 0.2s;
}
@media all and (max-width: 480px) {
  .fixedarea-wrapper {
    gap: 15px;
  }
}
.fixedarea__comment {
  position: relative;
  background: #fff;
  padding: 14px 20px;
  box-shadow: 0 0 20px 0 rgba(82, 71, 42, 0.4);
  width: 330px;
  opacity: 1;
  visibility: visible;
  transition: 0.5s;
  pointer-events: auto;
}
@media all and (max-width: 896px) {
  .fixedarea__comment {
    width: 300px;
  }
}
@media all and (max-width: 480px) {
  .fixedarea__comment {
    padding: 10px;
    width: 150px;
  }
}
.fixedarea__comment.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.fixedarea__comment::after {
  position: absolute;
  content: "";
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2215%22%20height%3D%2221%22%20viewBox%3D%220%200%2015%2021%22%20fill%3D%22none%22%3E%20%3Cpath%20d%3D%22M-5.14984e-05%2020.8902L3.22705%206.34705e-06L14.1751%205.20966L-5.14984e-05%2020.8902Z%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E") center center/cover no-repeat;
  right: 65px;
  bottom: -15px;
  width: 14px;
  height: 27px;
}
.fixedarea__comment p {
  font-weight: 500;
  text-align: center;
}
@media all and (max-width: 480px) {
  .fixedarea__comment p {
    font-size: 1.3rem;
  }
}
.fixedarea__comment p a {
  color: #826A29;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding-left: 0.3em;
}
@media all and (max-width: 480px) {
  .fixedarea__comment p a {
    display: block;
    padding-left: 0;
  }
}
.fixedarea__comment button {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  display: grid;
  place-content: center;
  cursor: pointer;
  background: #333;
}
.fixedarea__comment button img {
  width: 10px;
}
.fixedarea__reservation {
  background: #F7F6F1;
  width: 100%;
  box-shadow: 0 0 20px 0 rgba(82, 71, 42, 0.4);
  display: grid;
  grid-template-columns: 37px 1fr;
  pointer-events: auto;
}
@media all and (max-width: 896px) {
  .fixedarea__reservation {
    display: none;
  }
}
.fixedarea__reservation button.togglebtn {
  background: #333;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 5px;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}
.fixedarea__reservation button.togglebtn span.btntxt {
  writing-mode: vertical-rl;
  transform: scale(-1, -1);
}
.fixedarea__reservation button.togglebtn img {
  width: 12px;
  filter: brightness(0) invert(1);
}
.fixedarea__base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px 15px 40px;
}
@media all and (max-width: 1025px) {
  .fixedarea__base {
    padding: 15px 20px;
  }
}
@media all and (max-width: 896px) {
  .fixedarea__base {
    justify-content: center;
    width: 100%;
    max-width: 700px;
    flex-direction: column;
    gap: 20px;
  }
}
@media all and (max-width: 480px) {
  .fixedarea__base {
    padding: 15px 0;
  }
}
.fixedarea__wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
}
@media all and (max-width: 1025px) {
  .fixedarea__wrap {
    gap: 10px;
  }
}
.fixedarea__wrap .place {
  border-bottom: 1px solid #333;
  padding: 0 0 2px 22px;
  position: relative;
}
.fixedarea__wrap .place::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background: url(../../assets/images/common/icon_place.svg) center center/cover no-repeat;
  width: 20px;
  height: 20px;
}
.fixedarea__wrap .place select {
  cursor: pointer;
}
@media all and (max-width: 896px) {
  .fixedarea__wrap .place select {
    width: 100%;
  }
}
.fixedarea__wrap .calendar__area {
  position: relative;
  padding: 0 30px 0 22px;
  border-right: 1px solid #888;
}
@media all and (max-width: 1025px) {
  .fixedarea__wrap .calendar__area {
    padding: 0 10px 0 22px;
  }
}
@media all and (max-width: 896px) {
  .fixedarea__wrap .calendar__area {
    padding: 0 0 0 22px;
    border-right: none;
  }
}
.fixedarea__wrap .calendar__area::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background: url(../../assets/images/common/icon_calendar.svg) center center/cover no-repeat;
  width: 20px;
  height: 20px;
}
.fixedarea__wrap .calendar__area input {
  cursor: pointer;
  border-bottom: 1px solid #333;
  padding-bottom: 2px;
  width: 100%;
  letter-spacing: -0.05em;
}
.fixedarea__wrap .adult__select {
  display: flex;
  align-items: center;
  gap: 10px;
}
.fixedarea__wrap .adult__select p:first-child {
  position: relative;
  padding-left: 22px;
}
.fixedarea__wrap .adult__select p:first-child::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background: url(../../assets/images/common/icon_adult.svg) center center/cover no-repeat;
  width: 20px;
  height: 20px;
}
.fixedarea__wrap .adult__people {
  border-bottom: 1px solid #333;
  padding: 0 0 2px 0;
}
.fixedarea__wrap .child__select {
  display: flex;
  align-items: center;
  gap: 5px;
}
.fixedarea__wrap .child__select p:first-child {
  position: relative;
  padding-left: 22px;
}
.fixedarea__wrap .child__select p:first-child::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background: url(../../assets/images/common/icon_child.svg) center center/cover no-repeat;
  width: 20px;
  height: 20px;
}
.fixedarea__wrap .child__people {
  border-bottom: 1px solid #333;
  padding: 0 0 2px 0;
}
.fixedarea__wrap .child__people select {
  cursor: pointer;
}
.fixedarea__search button {
  background: #333;
  display: block;
  color: #fff;
  text-align: center;
  padding: 12px 20px 12px 40px;
  width: 125px;
  position: relative;
}
@media all and (max-width: 1025px) {
  .fixedarea__search button {
    padding: 12px 12px 12px 30px;
  }
}
.fixedarea__search button::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
  background: url(../../assets/images/common/icon_search.svg) center center/cover no-repeat;
  width: 18px;
  height: 18px;
}
.fixedarea .reservationbtn {
  display: none;
}
@media all and (max-width: 896px) {
  .fixedarea .reservationbtn {
    display: block;
    width: 100%;
    pointer-events: auto;
  }
}
.fixedarea .reservationbtn button {
  width: 100%;
  background: #333;
  display: block;
  color: #fff;
  text-align: center;
  padding: 14px;
}
.fixedarea .reservationbtn button span {
  position: relative;
  padding-left: 1.8em;
}
.fixedarea .reservationbtn button span::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background: url(../../assets/images/common/icon_search.svg) center center/cover no-repeat;
  width: 18px;
  height: 18px;
}

.flatpickr-calendar {
  z-index: 10000;
}

.flatpickr-wrapper {
  max-width: 220px;
}
@media all and (max-width: 896px) {
  .flatpickr-wrapper {
    max-width: 100%;
  }
}

.flatpickr-calendar.static.open {
  top: auto !important;
  bottom: 100% !important;
  margin-bottom: 5px;
}

.flatpickr-calendar.static.open.arrowTop::before,
.flatpickr-calendar.static.open.arrowTop::after,
.flatpickr-calendar.static.open.arrowBottom::before,
.flatpickr-calendar.static.open.arrowBottom::after {
  display: none;
}

#reservation_sp {
  align-items: flex-end;
}
@media (min-width: 896px) {
  #reservation_sp {
    display: none;
  }
}
@media all and (max-width: 480px) {
  #reservation_sp .modal-content {
    padding: 30px;
  }
}
@media (width <= 360px) {
  #reservation_sp .modal-content {
    padding: 30px 10px;
  }
}
#reservation_sp .modal-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
#reservation_sp .modal-inner .fixedarea__wrap {
  flex-wrap: wrap;
  justify-content: space-between;
}
@media all and (max-width: 896px) {
  #reservation_sp .modal-inner .fixedarea__wrap {
    gap: 15px;
    width: 100%;
  }
}
#reservation_sp .modal-inner .fixedarea__wrap .place, #reservation_sp .modal-inner .fixedarea__wrap .calendar__area {
  width: 100%;
}
#reservation_sp .modal-inner .fixedarea__wrap .adult, #reservation_sp .modal-inner .fixedarea__wrap .child {
  width: 45%;
}
@media all and (max-width: 896px) {
  #reservation_sp .modal-inner .flatpickr-wrapper {
    width: 100%;
  }
}

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

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

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

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

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

/* header */
/* ============================================ */
.header {
  width: 100%;
  height: 83px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 600;
  transition: 0.5s;
}
@media (width <= 1200px) {
  .header {
    height: 60px;
  }
}
.header-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0 50px;
  padding: 30px 20px 10px 20px;
}
@media (width <= 1200px) {
  .header-wrapper {
    padding: 12px 20px 10px 20px;
  }
}
@media (width <= 1200px) {
  .header-contents {
    display: none;
  }
}
.header-menu {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0 30px;
}
@media all and (max-width: 1367px) {
  .header-menu {
    gap: 0 20px;
  }
}
.header-menu > li.--current {
  color: #826A29;
}
.header-menu > li.login a {
  position: relative;
  padding-left: 1.5em;
}
.header-menu > li.login a::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background: url(../../assets/images/common/icon_login.svg) center center/cover no-repeat;
  width: 17px;
  height: 17px;
}
.header-menu > li.reservation a {
  background: #826A29;
  color: #fff;
  text-align: center;
  padding: 12px 30px;
}
.header-lang .header-nav__acc__trigger {
  padding-left: 1.5em;
}
.header-lang .header-nav__acc__contents {
  width: 110px;
  margin: 8px 0 auto auto;
}
.header-lang li {
  border-bottom: 1px solid #ccc;
}
.header-lang li:last-child {
  border-bottom: none;
}
.header-hamburger {
  display: none;
}
@media (width <= 1200px) {
  .header-hamburger {
    display: block;
    width: 60px;
    height: 60px;
    cursor: pointer;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 600;
  }
}
.header-hamburger.--active .header-hamburger__line {
  background: #fff;
}
.header-hamburger.--active .header-hamburger__line:nth-of-type(1) {
  translate: 0 0;
  rotate: -45deg;
}
.header-hamburger.--active .header-hamburger__line:nth-of-type(2) {
  opacity: 0;
}
.header-hamburger.--active .header-hamburger__line:nth-of-type(3) {
  translate: 0 0;
  rotate: 45deg;
}
.header-hamburger__line {
  display: block;
  width: 30px;
  height: 2px;
  background: #333;
  transition: rotate 0.3s ease-out, opacity 0.1s ease-out;
  position: absolute;
  inset: 0;
  margin: auto;
}
.header-hamburger__line:nth-of-type(1) {
  translate: 0 -9px;
}
.header-hamburger__line:nth-of-type(3) {
  translate: 0 9px;
}
.header-nav {
  display: none;
}
@media (width <= 1200px) {
  .header-nav {
    display: block;
    width: 100%;
    max-width: 400px;
    height: 100dvh;
    padding: 50px 30px 80px;
    background: #5c5c5c;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 400;
    translate: 100% 0;
    transition: all 0.3s linear;
    overflow: auto;
  }
}
.header-nav.--open {
  translate: 0 0;
}
.header-nav__link {
  display: flex;
  align-items: center;
  gap: 0.5em;
  padding: 1em 0;
}
@media (width <= 1200px) {
  .header-nav__link {
    color: #fff;
  }
}
.header-nav__icon {
  flex-shrink: 0;
  display: block;
  width: 0.6em;
  height: 0.6em;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  rotate: 45deg;
  position: relative;
  margin-right: 0.3em;
}
@media (width <= 1200px) {
  .header-nav__acc {
    display: flex;
    flex-direction: row-reverse;
  }
}
.header-nav__acc__trigger {
  display: flex;
  align-items: center;
  -moz-column-gap: 1em;
       column-gap: 1em;
  cursor: pointer;
  border-left: 1px solid #ccc;
}
@media (width <= 1200px) {
  .header-nav__acc__trigger {
    position: absolute;
    color: #fff;
    top: 15px;
    right: 60px;
    border-left: none;
  }
}
.header-nav__acc__trigger p {
  position: relative;
  padding: 0 1em 0 1.5em;
}
.header-nav__acc__trigger p::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background: url(../../assets/images/common/icon_lang.svg) center center/cover no-repeat;
  width: 17px;
  height: 17px;
}
.header-nav__acc__trigger p::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background: url(../../assets/images/common/icon_arrow.svg) center center/cover no-repeat;
  width: 11px;
  height: 7px;
}
.header-nav__acc__trigger.--active .header-nav__acc__trigger__icon {
  rotate: 315deg;
}
.header-nav__acc__trigger__icon {
  flex-shrink: 0;
  display: block;
  width: 0.6em;
  height: 0.6em;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  rotate: 135deg;
  position: relative;
}
.header-nav__acc__trigger .header-nav a {
  color: #333;
}
.header-nav__acc__list {
  background: #fff;
  text-align: center;
  box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.15);
}
.header-nav__acc__list a {
  display: block;
  color: #333;
  padding: 3px;
}
.header-nav__acc__list a:hover {
  background: #826A29;
  color: #fff;
  opacity: 1;
}
.header-nav__acc__icon {
  flex-shrink: 0;
  display: block;
  width: 0.6em;
  height: 0.6em;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  rotate: 45deg;
  position: relative;
  margin-right: 0.3em;
}
.header-nav__acc__link {
  display: flex;
  align-items: center;
  gap: 1em;
  padding: 1em 0;
}
.header-nav__acc__contents {
  overflow: hidden;
  height: 0;
}
.header-nav__acc__contents.--open {
  overflow: visible;
  animation: navOpen 0.3s ease-out;
}
@media (width <= 1200px) {
  .header-nav__acc__contents.--open {
    width: 128px;
    box-shadow: none;
  }
}
.header-nav .header-logo {
  margin-top: 80px;
}
.header-nav .header-logo img {
  filter: brightness(0) invert(1);
  max-width: 136px;
}
@keyframes navOpen {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.header-logo ul {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}
.header-logo ul li a {
  display: block;
  text-align: center;
  padding: 12px 22px;
  border: 1px solid #fff;
  font-size: 1.4rem;
  color: #fff;
}
@media all and (max-width: 480px) {
  .header-logo ul li a {
    font-size: 1.3rem;
  }
}
@media (width <= 320px) {
  .header-logo ul li a {
    padding: 12px;
  }
}
.header-logo ul li.reservation a {
  background: #fff;
  color: #5C5C5C;
}
.header .overlay {
  display: none;
}
@media (width <= 1200px) {
  .header .overlay {
    display: block;
    width: 0;
    height: 0;
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    opacity: 0;
    transition: opacity 0.3s ease-out;
  }
}
.header .overlay.--open {
  width: 100%;
  height: 100%;
  opacity: 1;
}

.modal .modal-content {
  background: #F7F6F1;
}
.modal .search p.headtxt {
  text-align: center;
  font-size: 2.4rem;
}
@media all and (max-width: 480px) {
  .modal .search p.headtxt {
    font-size: 1.8re;
  }
}
.modal .search p.notetxt {
  text-align: center;
  margin-top: 15px;
  font-size: 1.4rem;
}
.modal .search__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px 30px;
  margin-top: 30px;
}
@media all and (max-width: 896px) {
  .modal .search__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 10px;
  }
}
.modal .search__card a {
  display: block;
  background: #fff;
}
.modal .search__card a:hover {
  opacity: 1;
}
.modal .search__card a:hover figure img {
  transform: scale(1.05);
}
.modal .search__img {
  position: relative;
}
.modal .search__img figure {
  aspect-ratio: 1.412/1;
  overflow: hidden;
}
.modal .search__img figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: 0.5s;
}
.modal .search__img p {
  position: absolute;
  display: inline-block;
  bottom: 0;
  left: 0;
  background: #826A29;
  color: var(--Color-white, #FFF);
  padding: 1px 13px 1px 23px;
  font-size: 1.3rem;
}
@media all and (max-width: 480px) {
  .modal .search__img p {
    font-size: 1rem;
  }
}
.modal .search__img p::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 6px;
  background: url(../../assets/images/common/icon_place.svg) center center/cover no-repeat;
  width: 14px;
  height: 14px;
  filter: brightness(0) invert(1);
}
.modal .search__link {
  position: relative;
  padding: 20px 15px;
  color: #333;
  font-size: 1.6rem;
  text-align: left;
}
@media all and (max-width: 480px) {
  .modal .search__link {
    padding: 10px 16px 10px 10px;
    font-size: 1.2rem;
  }
}
.modal .search__link::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  background: url(../../assets/images/common/icon_outside.svg) center center/cover no-repeat;
  width: 10px;
  height: 10px;
}
@media all and (max-width: 480px) {
  .modal .search__link::before {
    right: 5px;
  }
}

/* モーダル */
/* ============================================ */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease, background 0.35s ease;
  font-weight: 500;
}
.modal-content {
  position: relative;
  background: #F7F6F1;
  color: #111;
  padding: 60px 75px;
  max-width: 960px;
  width: 100%;
  transform: scale(0.9);
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  will-change: transform, opacity;
}
@media (width <= 960px) {
  .modal-content {
    width: calc(100% - 30px);
  }
}
@media all and (max-width: 896px) {
  .modal-content {
    padding: 30px 20px;
  }
}
.modal-close {
  position: absolute;
  top: 0;
  right: 0;
  background: #333;
  outline: none;
  cursor: pointer;
  border-width: 0;
  width: 45px;
  height: 45px;
  display: grid;
  place-content: center;
}
@media all and (max-width: 480px) {
  .modal-close {
    width: 35px;
    height: 35px;
  }
  .modal-close img {
    width: 20px;
  }
}
.modal.is-open {
  visibility: visible;
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.5);
  opacity: 1;
}
.modal.is-open .modal-content {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.common-title {
  padding: 120px 0 60px;
}
@media all and (max-width: 896px) {
  .common-title {
    padding: 60px 0 30px;
  }
}
.common-title h1 {
  font-size: 4rem;
  font-weight: 600;
  color: #826A29;
  text-align: center;
}
@media all and (max-width: 600px) {
  .common-title h1 {
    font-size: 3rem;
  }
}

/* footer */
/* ============================================ */
.footer {
  padding: 90px 0 120px;
  background: #5C5C5C;
  color: #fff;
  position: sticky;
  top: 100dvh;
  z-index: 200;
}
@media all and (max-width: 480px) {
  .footer {
    padding: 45px 0 80px;
  }
}
.footer-brandsite {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 45px 50px;
}
@media all and (max-width: 896px) {
  .footer-brandsite {
    flex-direction: column;
  }
}
.footer-brandsite .textlink {
  display: flex;
  gap: 20px 90px;
}
@media all and (max-width: 1025px) {
  .footer-brandsite .textlink {
    gap: 20px 40px;
  }
}
@media all and (max-width: 896px) {
  .footer-brandsite .textlink {
    flex-direction: column;
  }
}
.footer-brandsite .textlink ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-brandsite .textlink ul li a {
  display: inline-block;
  position: relative;
  padding-right: 1.2em;
}
.footer-brandsite .textlink ul li a::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  right: 0;
  background: url(../../assets/images/common/icon_arrow.svg) center center/cover no-repeat;
  width: 11px;
  height: 7px;
  filter: brightness(0) invert(1);
}
.footer-logo img {
  filter: brightness(0) invert(1);
}
@media all and (max-width: 480px) {
  .footer-logo img {
    max-width: 136px;
  }
}
.footer-logo ul {
  margin-top: 50px;
  display: flex;
  gap: 20px;
}
@media all and (max-width: 896px) {
  .footer-logo ul {
    margin-top: 30px;
  }
}
.footer-logo ul li a {
  display: block;
  text-align: center;
  padding: 12px 22px;
  border: 1px solid #fff;
  font-size: 1.4rem;
}
@media all and (max-width: 480px) {
  .footer-logo ul li a {
    padding: 12px 20px;
    font-size: 1.3rem;
  }
}
.footer-logo ul li.reservation a {
  background: #fff;
  color: #5C5C5C;
}
.footer-corporate {
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
@media all and (max-width: 896px) {
  .footer-corporate {
    margin-top: 35px;
  }
}
.footer-corporate .textlink {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 20px 25px;
}
@media all and (max-width: 896px) {
  .footer-corporate .textlink {
    margin-top: 35px;
    flex-direction: column;
  }
}
.footer-corporate .textlink li a {
  display: inline-block;
  position: relative;
  padding-right: 1em;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-corporate .textlink li a::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background: url(../../assets/images/common/icon_outside.svg) center center/cover no-repeat;
  width: 10px;
  height: 10px;
  filter: brightness(0) invert(1);
}
.footer-corporate .logolink {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 45px;
}
@media all and (max-width: 896px) {
  .footer-corporate .logolink {
    margin-top: 50px;
  }
}
@media all and (max-width: 480px) {
  .footer-corporate .logolink {
    justify-content: flex-start;
  }
}
.footer-corporate .logolink img.logo1 {
  height: 60px;
}
@media all and (max-width: 480px) {
  .footer-corporate .logolink img.logo1 {
    height: 50px;
  }
}
.footer-corporate .logolink img.logo2 {
  height: 48px;
}
@media all and (max-width: 480px) {
  .footer-corporate .logolink img.logo2 {
    height: 40px;
  }
}
.footer-copyright {
  text-align: center;
  font-size: 1.3rem;
  margin-top: 35px;
}
@media all and (max-width: 896px) {
  .footer-copyright {
    font-size: 1.1rem;
  }
}
.footer .pagetop {
  cursor: pointer;
  position: fixed;
  right: 20px;
  bottom: 0;
  z-index: 600;
  width: 40px;
  height: 40px;
  background: #5C5C5C;
  display: grid;
  place-content: center;
}
@media only screen and (max-width: 992px) {
  .footer .pagetop {
    display: none;
  }
}
.footer .pagetop img {
  width: 13px;
  transform: rotate(-90deg);
  filter: brightness(0) invert(1);
}

.input-container-input-container-da40af .input-container-title-db81ec {
  font-weight: 400 !important;
}

.input-container-input-container-da40af .input-container-slot-239963 {
  font-family: "Oswald", sans-serif !important;
}

.search-widget-input-34bba0, .search-widget-select-75fb48 {
  font-family: "Oswald", sans-serif !important;
}

.search-widget-search-container-bf1818 {
  padding: 10px !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
@media only screen and (max-width: 992px) {
  .search-widget-search-container-bf1818 {
    width: 100% !important;
  }
}

@media only screen and (max-width: 992px) {
  .search-widget-search-container-bf1818 .search-widget-input-wrapper-eaf5bf, .search-widget-two-picker-wrapper-4ca735 {
    display: inline-block !important;
  }
}

@media only screen and (max-width: 992px) {
  .input-container-input-container-da40af {
    display: inline-block !important;
  }
}

@media only screen and (max-width: 992px) {
  .search-widget-search-container-bf1818 .search-widget-button-wrapper-d2b715 {
    display: inline-block !important;
    width: auto !important;
  }
}

@media only screen and (max-width: 992px) {
  .search-widget-input-34bba0 {
    width: auto !important;
  }
}

@media only screen and (max-width: 992px) {
  .input-container-input-container-da40af.input-container-width-sm-88e98c {
    width: auto !important;
  }
}

@media only screen and (max-width: 992px) {
  .input-container-input-container-da40af .input-container-title-db81ec {
    font-size: 14px !important;
  }
}

.button-btn-f51c1a {
  font-weight: 400 !important;
  background: #333 !important;
  border-radius: 0 !important;
  margin: 10px 0 20px !important;
}