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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

em {
  font-style: italic;
}

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

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

del {
  text-decoration: line-through;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* コンテンツ最大幅 */
/* color */
/* ============================================ */
/* font-family */
/* ============================================ */
/* font-size */
/* ============================================ */
/* common */
/* ============================================ */
body {
  background: #fff;
  color: #000;
  font-family: "Zen Maru Gothic", sans-serif;
  font-style: normal;
  font-size: clamp(0.875rem, 0.8208rem + 0.2312vw, 1rem);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.02em;
  font-feature-settings: "palt";
  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;
}

.m0 {
  margin: 0 !important;
}

.p0 {
  padding: 0 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.outer {
  overflow: hidden;
  background: url("../images/bg.jpg") top left/100% auto repeat-y;
  padding-bottom: clamp(4rem, -8.3721rem + 22.093vw, 8.75rem);
}

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

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

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

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

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

/* header */
/* ============================================ */
.header {
  width: 100%;
  background: linear-gradient(180deg, #fff 23.7%, transparent 100%);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 800;
  transition: all 0.3s ease-out;
}
.header-wrapper {
  width: calc(100% - 50px);
  max-width: 1430px;
  margin-inline: auto;
}
@media all and (max-width: 896px) {
  .header-wrapper {
    width: calc(100% - 40px);
  }
}
@media all and (max-width: 480px) {
  .header-wrapper {
    width: calc(100% - 30px);
  }
}
.header-container {
  padding-block: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
@media all and (max-width: 1367px) {
  .header-container {
    padding-block: 24px;
  }
}
@media all and (max-width: 896px) {
  .header-container {
    padding-block: 20px;
  }
}
.header-logo {
  width: min(32vw, 397px);
}
@media all and (max-width: 896px) {
  .header-logo {
    width: 222px;
  }
}
.header-btn {
  flex-shrink: 0;
  width: 320px;
}
@media all and (max-width: 896px) {
  .header-btn {
    width: 100px;
  }
}
.header-btn__link {
  width: 100%;
  text-align: center;
  display: block;
  padding: 1.2em 3.8em 1.2em 2.25em;
  background: #E94709;
  color: #fff;
  font-size: clamp(0.75rem, 0.5723rem + 0.7583vw, 1.25rem);
  font-weight: 700;
  border: 2px solid #E94709;
  border-radius: 9999px;
  position: relative;
  box-shadow: 2px 2px 0 0 #9A2F06;
}
@media all and (max-width: 896px) {
  .header-btn__link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2px;
    padding: 0.6em 0.4em;
    font-size: 0.75rem;
    border-radius: 10px;
  }
}
.header-btn__link.--soon {
  pointer-events: none;
  background: #9B9B9B;
  color: #7b7b7b;
  border-color: #9B9B9B;
  box-shadow: 2px 2px 0 0 #4b4b4b;
}
.header-btn__link.--soon::before {
  background-image: url("../images/icon_pdf_gray.svg");
}
@media (hover: hover) {
  .header-btn__link:hover {
    opacity: 1;
    background: #fff;
    color: #E94709;
    box-shadow: none;
    translate: 2px 2px;
  }
  .header-btn__link:hover::before {
    background-image: url("../images/icon_pdf.svg");
  }
}
.header-btn__link::before {
  content: "";
  display: inline-block;
  width: 1.6em;
  height: 1.6em;
  background: url("../images/icon_pdf_white.svg") center center/contain no-repeat;
  position: absolute;
  top: 50%;
  right: 1.2em;
  translate: 0 -50%;
}
@media all and (max-width: 896px) {
  .header-btn__link::before {
    position: static;
    translate: 0 0;
  }
}

/* footer */
/* ============================================ */
.footer {
  padding: 40px 0 80px;
  background: url("../images/bg.jpg") top left/100% auto repeat-y;
  position: -webkit-sticky;
  position: sticky;
  top: 100dvh;
  z-index: 400;
}
@media all and (max-width: 896px) {
  .footer {
    padding: 12px 0 42px;
  }
}
.footer::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../images/footer_bg.svg") top center/110vw auto no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}
@media all and (max-width: 896px) {
  .footer::before {
    background-size: 132vw auto;
  }
}
.footer::after {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #DB543C 0%, #DB543C 14.29%, #DB9B40 14.29%, #DB9B40 28.57%, #D5B95B 28.57%, #D5B95B 42.86%, #9DB85C 42.86%, #9DB85C 57.14%, #35A36E 57.14%, #35A36E 71.43%, #008DBB 71.43%, #008DBB 85.71%, #875C94 85.71%, #875C94 100%);
  position: absolute;
  bottom: 0;
  left: 0;
}
.footer-decoration {
  position: absolute;
}
.footer-decoration.--decoration01 {
  width: 31.875vw;
  top: -104px;
  left: 0;
}
@media all and (max-width: 896px) {
  .footer-decoration.--decoration01 {
    width: min(37.6vw, 141px);
    top: 28px;
    left: -30px;
  }
}
.footer-decoration.--decoration02 {
  width: 24.58vw;
  top: 0;
  right: 0;
}
@media all and (max-width: 896px) {
  .footer-decoration.--decoration02 {
    width: min(35.47vw, 133px);
    top: 12px;
  }
}
.footer-wrapper {
  position: relative;
  z-index: 10;
}
.footer-btn {
  container-type: inline-size;
  width: 25.16vw;
  max-width: 480px;
  margin-inline: auto;
}
@media all and (max-width: 896px) {
  .footer-btn {
    width: 52vw;
    max-width: 280px;
  }
}
.footer-btn__link {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  aspect-ratio: 483/286;
  color: #fff;
  font-size: 7.2cqw;
  font-weight: 700;
  position: relative;
  z-index: 20;
}
.footer-btn__link.--soon {
  pointer-events: none;
  color: #7b7b7b;
}
.footer-btn__link.--soon::before {
  background-image: url("../images/icon_pdf_gray.svg");
}
.footer-btn__link.--soon .footer-btn__bg {
  filter: drop-shadow(2px 2px 0 #4b4b4b);
}
.footer-btn__link::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url("../images/icon_pdf_white.svg") center center/contain no-repeat;
}
@media all and (max-width: 896px) {
  .footer-btn__link::before {
    width: 1.5em;
    height: 1.5em;
  }
}
.footer-btn__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -10;
  filter: drop-shadow(2px 2px 0 #9A2F06);
}
.footer-btn__bg img {
  width: 100%;
  max-width: none;
}
.footer-block {
  margin-top: 80px;
  word-break: keep-all;
  text-align: center;
  color: #fff;
}
@media all and (max-width: 896px) {
  .footer-block {
    margin-top: 60px;
  }
}
@media all and (max-width: 480px) {
  .footer-block {
    text-align: left;
  }
}
.footer-copyright {
  font-weight: 500;
  letter-spacing: 0.1em;
}
.footer-address {
  font-size: clamp(0.75rem, 0.4244rem + 0.5814vw, 0.875rem);
  margin-top: 20px;
}
.footer .pagetop {
  cursor: pointer;
  position: fixed;
  right: 20px;
  bottom: 0;
  z-index: 600;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.25));
}
@media all and (max-width: 896px) {
  .footer .pagetop {
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.25));
  }
}
.footer .pagetop img {
  width: min(4.16vw, 80px);
}
@media all and (max-width: 896px) {
  .footer .pagetop img {
    width: 32px;
  }
}

/* top */
/* ============================================ */
.top-main {
  padding: min(9.375vw, 180px) 0;
  background: url("../images/main_bg.jpg") top left/100% auto repeat-y;
  overflow: hidden;
  position: relative;
}
@media all and (max-width: 896px) {
  .top-main {
    padding: 10.67vw 0 58vw;
    background-position: top -10% left 8%;
    background-size: 180% auto;
  }
}
.top-main::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, transparent 40%, #B08D45 100%);
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
}
@media all and (max-width: 896px) {
  .top-main::before {
    background: linear-gradient(0deg, transparent 0%, #B08D45 80%);
  }
}
.top-main__leaf {
  width: min(33.8vw, 649px);
  position: absolute;
  top: 0;
  left: max(-2.4vw, -46px);
}
@media all and (max-width: 896px) {
  .top-main__leaf {
    display: none;
  }
}
.top-main__img {
  width: min(72.08vw, 1384px);
  position: absolute;
  right: max(-24.69vw, -474px);
  bottom: max(-6.77vw, -130px);
}
@media all and (max-width: 896px) {
  .top-main__img {
    width: 124vw;
    right: -29.5vw;
    bottom: -11.2vw;
  }
}
.top-main__img img {
  width: 100%;
  max-width: none;
}
.top-main__contents {
  max-width: 787px;
  width: 60%;
  position: relative;
  z-index: 10;
  filter: drop-shadow(2px 2px 4px #8E640E);
}
@media all and (max-width: 896px) {
  .top-main__contents {
    width: 91.3%;
    margin-inline: auto;
  }
}
.top-main__logo {
  width: 85%;
}
@media all and (max-width: 896px) {
  .top-main__logo {
    margin-inline: auto;
  }
}
.top-main__ttl {
  margin-top: clamp(1rem, 0.3497rem + 2.7746vw, 2.5rem);
}

.top-select {
  margin-top: clamp(3.75rem, -9.2733rem + 23.2558vw, 8.75rem);
  position: relative;
  z-index: 10;
}
.top-select__decoration {
  position: absolute;
}
.top-select__decoration.--decoration01 {
  width: 16.82vw;
  top: -0.83vw;
  right: 0;
}
@media all and (max-width: 896px) {
  .top-select__decoration.--decoration01 {
    width: min(38.93vw, 146px);
    top: -36px;
  }
}
.top-select__decoration.--decoration02 {
  width: 14.84vw;
  bottom: 1.67vw;
  left: 1.67vw;
}
@media all and (max-width: 896px) {
  .top-select__decoration.--decoration02 {
    width: min(43.2vw, 162px);
    bottom: -52px;
    left: -16px;
    z-index: -10;
  }
}
.top-select__container {
  border-radius: 40px 0 0 40px;
  background: #fff;
  margin-right: calc(50% - 50vw);
  padding: 80px calc(50vw - 50%) 80px clamp(1.25rem, -0.9176rem + 9.2486vw, 6.25rem);
}
@media all and (max-width: 896px) {
  .top-select__container {
    padding-block: 60px;
  }
}
.top-select__form {
  position: relative;
  z-index: 20;
}
.top-select__ttl {
  font-size: clamp(1.5rem, 1.3916rem + 0.4624vw, 1.75rem);
  font-weight: 500;
  letter-spacing: 0.2em;
}
.top-select__ttl::before {
  content: "";
  display: block;
  width: 112px;
  height: 3px;
  background: linear-gradient(90deg, #DB543C 0%, #DB543C 14.29%, #DB9B40 14.29%, #DB9B40 28.57%, #D5B95B 28.57%, #D5B95B 42.86%, #9DB85C 42.86%, #9DB85C 57.14%, #35A36E 57.14%, #35A36E 71.43%, #008DBB 71.43%, #008DBB 85.71%, #875C94 85.71%, #875C94 100%);
  border-radius: 9999px;
  margin-bottom: 16px;
}
.top-select__contents {
  font-size: 1.25rem;
  font-weight: 500;
  margin-top: 24px;
}
.top-select__contents label {
  display: inline-block;
  margin: 16px 40px 0 0;
}
@media all and (max-width: 896px) {
  .top-select__contents label {
    margin: 10px 20px 0 0;
  }
}
@media all and (max-width: 480px) {
  .top-select__contents label {
    display: block;
    margin-right: 0;
  }
}
.top-select__contents input[type=checkbox] {
  margin-right: 10px;
}
.top-select__btn {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}
@media all and (max-width: 896px) {
  .top-select__btn {
    gap: 10px;
    margin-top: 32px;
  }
}
.top-select__btn__item {
  width: 300px;
  font-size: clamp(1rem, 0.8916rem + 0.4624vw, 1.25rem);
  font-weight: 700;
  position: relative;
}
@media (hover: hover) {
  .top-select__btn__item:hover .top-select__btn__link {
    color: #655D4B;
    background: #fff;
  }
  .top-select__btn__item:hover .top-select__btn__icon {
    background-image: url("../images/arrow_right.svg");
  }
}
@media (hover: hover) {
  .top-select__btn__item.--reset:hover .top-select__btn__link {
    color: #fff;
    background: #655D4B;
  }
  .top-select__btn__item.--reset:hover .top-select__btn__icon {
    background-image: url("../images/icon_reset_white.svg");
  }
}
.top-select__btn__item.--reset .top-select__btn__link {
  color: #655D4B;
  background: #fff;
}
.top-select__btn__item.--reset .top-select__btn__icon {
  background-image: url("../images/icon_reset.svg");
}
.top-select__btn__link {
  display: block;
  width: 100%;
  padding: 0.8em 3em 0.8em 1.2em;
  text-align: center;
  border: 2px solid #655D4B;
  color: #fff;
  border-radius: 9999px;
  background: #655D4B;
  transition: all 0.3s ease-out;
}
@media all and (max-width: 896px) {
  .top-select__btn__link {
    padding: 0.8em 2.6em 0.8em 1em;
  }
}
.top-select__btn__icon {
  display: inline-block;
  width: 1.6em;
  height: 1.6em;
  background: url("../images/arrow_right_white.svg") center center/contain no-repeat;
  position: absolute;
  top: 50%;
  right: 1.2em;
  translate: 0 -50%;
  transition: all 0.3s ease-out;
}
@media all and (max-width: 896px) {
  .top-select__btn__icon {
    right: 0.8em;
  }
}

.top-link {
  margin-top: 56px;
}
.top-link__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media all and (max-width: 896px) {
  .top-link__container {
    gap: 20px;
  }
}
.top-link__item {
  text-align: center;
  width: 100%;
  max-width: 604px;
  margin-inline: auto;
}
.top-link__item.--live .top-link__link {
  font-size: clamp(1rem, 0.7832rem + 0.9249vw, 1.5rem);
  background: #008DBB;
  box-shadow: 2px 2px 0 0 #09485D;
  border-color: #008DBB;
}
.top-link__item.--live .top-link__link::before {
  background-image: url("../images/arrow_right_white.svg");
}
@media (hover: hover) {
  .top-link__item.--live .top-link__link:hover {
    background: #fff;
    color: #008DBB;
    box-shadow: none;
  }
  .top-link__item.--live .top-link__link:hover::before {
    background-image: url("../images/arrow_right_blue.svg");
  }
}
.top-link__item.--live .top-link__link.--soon {
  background: #9B9B9B;
  color: #7b7b7b;
  border-color: #9B9B9B;
  box-shadow: 2px 2px 0 0 #4b4b4b;
}
.top-link__item.--live .top-link__link.--soon::before {
  background-image: url("../images/arrow_right_gray.svg");
}
.top-link__link {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0.8em 3.2em 0.8em 1.2em;
  font-size: clamp(1.25rem, 1.1416rem + 0.4624vw, 1.5rem);
  font-weight: 700;
  background: #E94709;
  color: #fff;
  border: 2px solid #E94709;
  border-radius: 9999px;
  position: relative;
  box-shadow: 2px 2px 0 0 #9A2F06;
  min-height: 120px;
}
.top-link__link.--soon {
  pointer-events: none;
  background: #9B9B9B;
  color: #7b7b7b;
  border-color: #9B9B9B;
  box-shadow: 2px 2px 0 0 #4b4b4b;
}
.top-link__link.--soon::before {
  background-image: url("../images/icon_pdf_gray.svg");
}
@media all and (max-width: 896px) {
  .top-link__link {
    min-height: inherit;
  }
}
@media (hover: hover) {
  .top-link__link:hover {
    opacity: 1;
    background: #fff;
    color: #E94709;
    box-shadow: none;
    translate: 2px 2px;
  }
  .top-link__link:hover::before {
    background-image: url("../images/icon_pdf.svg");
  }
}
.top-link__link::before {
  content: "";
  display: inline-block;
  width: 1.6em;
  height: 1.6em;
  background: url("../images/icon_pdf_white.svg") center center/contain no-repeat;
  position: absolute;
  top: 50%;
  right: 1.2em;
  translate: 0 -50%;
  transition: all 0.3s ease-out;
}
@media all and (max-width: 480px) {
  .top-link__txt .sp_block {
    display: block;
  }
}
.top-link__txt .txt_large {
  font-size: 1.5em;
}
.top-link__note {
  display: block;
  font-size: clamp(0.875rem, 0.7666rem + 0.4624vw, 1.125rem);
}

.top-list {
  margin-top: clamp(3.75rem, -6.0174rem + 17.4419vw, 7.5rem);
}
.top-list__ttl {
  text-align: center;
  font-size: clamp(2rem, 1.7832rem + 0.9249vw, 2.5rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-bottom: clamp(1.5rem, -5.0116rem + 11.6279vw, 4rem);
}
.top-list__ttl::before {
  content: "";
  display: block;
  width: 112px;
  height: 3px;
  background: linear-gradient(90deg, #DB543C 0%, #DB543C 14.29%, #DB9B40 14.29%, #DB9B40 28.57%, #D5B95B 28.57%, #D5B95B 42.86%, #9DB85C 42.86%, #9DB85C 57.14%, #35A36E 57.14%, #35A36E 71.43%, #008DBB 71.43%, #008DBB 85.71%, #875C94 85.71%, #875C94 100%);
  border-radius: 9999px;
  margin-bottom: 16px;
  margin-inline: auto;
}
.top-list__notice {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px 10px;
  margin-top: 32px;
}
@media all and (max-width: 896px) {
  .top-list__notice {
    gap: 4px 8px;
    margin-top: 16px;
  }
}
.top-list__notice__live {
  flex-shrink: 0;
  width: 80px;
  text-align: center;
  padding: 0.4em 0.8em;
  font-size: 0.875rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #fff;
  background: #008DBB;
  border-radius: 8px;
}
@media all and (max-width: 896px) {
  .top-list__notice__live {
    width: 72px;
  }
}
.top-list__notice__txt {
  font-size: clamp(1rem, 0.8916rem + 0.4624vw, 1.25rem);
  font-weight: 500;
}
.top-list__container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 24px;
  margin-top: 32px;
}
@media all and (max-width: 1025px) {
  .top-list__container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media all and (max-width: 896px) {
  .top-list__container {
    gap: 24px 10px;
    margin-top: 16px;
  }
}
@media all and (max-width: 600px) {
  .top-list__container {
    grid-template-columns: repeat(2, 1fr);
  }
}
.top-list__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0;
}
.top-list__item.hidden {
  display: none;
}
.top-list__inner {
  height: 100%;
  display: inherit;
  grid-template-rows: inherit;
  grid-row: inherit;
  gap: inherit;
  background: #fff;
  border-radius: 20px;
  padding-bottom: 20px;
  box-shadow: 2px 2px 0 0 #CDC1BD;
}
@media all and (max-width: 896px) {
  .top-list__inner {
    border-radius: 12px;
    padding-bottom: 16px;
  }
}
@media (hover: hover) {
  .top-list__inner:hover {
    opacity: 1;
    box-shadow: none;
    translate: 0 4px;
    padding-bottom: 16px;
  }
  .top-list__inner:hover .top-list__btn__link {
    background: #655D4B;
    color: #fff;
  }
  .top-list__inner:hover .top-list__btn__link::after {
    background-image: url("../images/arrow_right_white.svg");
  }
}
.top-list__img {
  background: #fff;
  aspect-ratio: 292/164;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}
@media all and (max-width: 896px) {
  .top-list__img {
    border-radius: 12px 12px 0 0;
  }
}
.top-list__img img {
  display: block;
  width: auto;
  height: 100%;
  margin-inline: auto;
}
.top-list__contents {
  width: calc(100% - 40px);
  margin-inline: auto;
  margin-top: 24px;
}
@media all and (max-width: 896px) {
  .top-list__contents {
    width: calc(100% - 32px);
    margin-top: 16px;
  }
}
.top-list__live {
  text-align: center;
  padding: 0.4em 0.8em;
  font-size: 0.875rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #fff;
  background: #008DBB;
  border-radius: 8px;
  margin-bottom: 8px;
}
.top-list__name {
  font-size: clamp(1rem, 0.8916rem + 0.4624vw, 1.25rem);
  font-weight: 500;
  color: #3E3A39;
  inline-size: -webkit-fit-content;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  margin-inline: auto;
}
.top-list__btn {
  text-align: center;
  width: calc(100% - 40px);
  margin-inline: auto;
  margin-top: 24px;
}
@media all and (max-width: 896px) {
  .top-list__btn {
    width: calc(100% - 32px);
    margin-top: 10px;
  }
}
.top-list__btn__link {
  display: block;
  border: 2px solid #655D4B;
  padding: 0.8em 2.5em 0.8em 1.25em;
  color: #655D4B;
  border-radius: 9999px;
  font-weight: 700;
  position: relative;
  transition: all 0.3s ease-out;
}
@media all and (max-width: 896px) {
  .top-list__btn__link {
    padding: 0.3em 0.6em;
  }
}
.top-list__btn__link::after {
  content: "";
  display: block;
  width: 1.25em;
  height: 1.25em;
  background: url("../images/arrow_right.svg") center center/contain no-repeat;
  position: absolute;
  top: 50%;
  right: 1em;
  translate: 0 -50%;
}
@media all and (max-width: 896px) {
  .top-list__btn__link::after {
    position: static;
    translate: 0 0;
    margin: auto;
  }
}
@media all and (max-width: 896px) {
  .top-list__btn__txt {
    display: none;
  }
}

/* second */
/* ============================================ */
.second-main {
  padding: min(5.2vw, 100px) 0;
  background: url("../images/second_main_bg.jpg") top left/100% auto repeat-y;
  overflow: hidden;
  position: relative;
}
@media all and (max-width: 896px) {
  .second-main {
    padding: 5.2vw 0 35vw;
    background-position: top -10% left 8%;
    background-size: 180% auto;
  }
}
.second-main::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, transparent 40%, #B08D45 100%);
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
}
@media all and (max-width: 896px) {
  .second-main::before {
    background: linear-gradient(0deg, transparent 0%, #B08D45 80%);
  }
}
.second-main__leaf {
  width: 33.8vw;
  position: absolute;
  top: 8px;
  left: -2.5vw;
}
@media all and (max-width: 896px) {
  .second-main__leaf {
    left: -22.5vw;
  }
}
.second-main__leaf img {
  width: 100%;
  max-width: none;
}
.second-main__img {
  width: min(30vw, 576px);
  position: absolute;
  right: min(12.24vw, 235px);
  bottom: max(-4.58vw, -88px);
}
@media all and (max-width: 896px) {
  .second-main__img {
    width: 60vw;
    right: 14.5vw;
    bottom: -9vw;
  }
}
.second-main__img img {
  width: 100%;
  max-width: none;
}
.second-main__contents {
  width: 60%;
  position: relative;
  z-index: 10;
  filter: drop-shadow(2px 2px 4px #8E640E);
  display: flex;
  align-items: center;
  gap: 4%;
}
@media all and (max-width: 896px) {
  .second-main__contents {
    width: 100%;
    margin-inline: auto;
  }
}

.second-breadcrumb {
  margin-top: 24px;
  font-size: clamp(0.75rem, 0.6958rem + 0.2312vw, 0.875rem);
  position: relative;
  z-index: 20;
}
@media all and (max-width: 896px) {
  .second-breadcrumb {
    margin-top: 16px;
  }
}
.second-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 0;
}
.second-breadcrumb__list > li {
  padding-right: 2.78em;
  position: relative;
}
.second-breadcrumb__list > li:last-of-type {
  padding-right: 0;
}
.second-breadcrumb__list > li:last-of-type::after {
  content: none;
}
.second-breadcrumb__list > li::after {
  content: "";
  display: inline-block;
  width: 0.36em;
  height: 0.36em;
  border-top: 1px solid #929292;
  border-right: 1px solid #929292;
  rotate: 45deg;
  position: absolute;
  top: 0.68em;
  right: 1.22em;
}
.second-breadcrumb__list a {
  color: #929292;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.notfound-wrapper {
  padding-top: clamp(3rem, -5.4651rem + 15.1163vw, 6.25rem);
}
.notfound-ttl {
  text-align: center;
  font-size: clamp(1.5rem, 1.3916rem + 0.4624vw, 1.75rem);
  font-weight: 500;
  letter-spacing: 0.2em;
}
.notfound-txt {
  inline-size: -webkit-fit-content;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  margin-top: clamp(1.5rem, -1.1047rem + 4.6512vw, 2.5rem);
  margin-inline: auto;
  font-size: clamp(1rem, 0.8916rem + 0.4624vw, 1.25rem);
  line-height: 2;
}
.notfound-btn {
  text-align: center;
  max-width: 320px;
  margin-inline: auto;
  margin-top: clamp(2.5rem, -1.407rem + 6.9767vw, 4rem);
}
@media all and (max-width: 896px) {
  .notfound-btn {
    max-width: 240px;
  }
}
.notfound-btn__link {
  display: block;
  border: 2px solid #655D4B;
  padding: 0.8em 2.5em 0.8em 1.25em;
  color: #655D4B;
  border-radius: 9999px;
  font-size: clamp(1rem, 0.8916rem + 0.4624vw, 1.25rem);
  font-weight: 700;
  position: relative;
  transition: all 0.3s ease-out;
}
.notfound-btn__link::after {
  content: "";
  display: block;
  width: 1.25em;
  height: 1.25em;
  background: url("../images/arrow_right.svg") center center/contain no-repeat;
  position: absolute;
  top: 50%;
  right: 1em;
  translate: 0 -50%;
}
@media (hover: hover) {
  .notfound-btn__link:hover {
    opacity: 1;
    color: #fff;
    background: #655D4B;
  }
  .notfound-btn__link:hover::after {
    background-image: url("../images/arrow_right_white.svg");
  }
}

/* detail */
/* ============================================ */
.detail-intro {
  margin-top: clamp(3.75rem, -9.2733rem + 23.2558vw, 8.75rem);
  position: relative;
}
.detail-intro__decoration {
  position: absolute;
}
.detail-intro__decoration.--decoration01 {
  width: 16.82vw;
  top: -110px;
  right: 0;
}
@media all and (max-width: 896px) {
  .detail-intro__decoration.--decoration01 {
    width: min(32vw, 120px);
    top: -80px;
  }
}
.detail-intro__decoration.--decoration02 {
  width: 14.84vw;
  bottom: 20px;
  left: 1.67vw;
}
@media all and (max-width: 896px) {
  .detail-intro__decoration.--decoration02 {
    width: min(37.33vw, 140px);
    bottom: -40px;
    left: -16px;
  }
}
.detail-intro__container {
  position: relative;
  z-index: 20;
}
.detail-intro__container::before {
  content: "";
  display: block;
  width: 112px;
  height: 3px;
  background: linear-gradient(90deg, #DB543C 0%, #DB543C 14.29%, #DB9B40 14.29%, #DB9B40 28.57%, #D5B95B 28.57%, #D5B95B 42.86%, #9DB85C 42.86%, #9DB85C 57.14%, #35A36E 57.14%, #35A36E 71.43%, #008DBB 71.43%, #008DBB 85.71%, #875C94 85.71%, #875C94 100%);
  border-radius: 9999px;
  margin-bottom: 24px;
  margin-inline: auto;
}
.detail-intro__live {
  text-align: center;
  padding: 0.4em 0.8em;
  font-size: clamp(0.875rem, 0.7666rem + 0.4624vw, 1.125rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #fff;
  background: #008DBB;
  border-radius: 8px;
  margin-bottom: 24px;
  margin-inline: auto;
  width: 100%;
  max-width: 120px;
}
@media all and (max-width: 896px) {
  .detail-intro__live {
    margin-bottom: 16px;
  }
}
.detail-intro__ttl {
  word-break: keep-all;
  text-align: center;
  font-size: clamp(1.25rem, 0.7081rem + 2.3121vw, 2.5rem);
  font-weight: 500;
}
@media all and (max-width: 896px) {
  .detail-intro__ttl {
    word-break: normal;
    text-align: left;
    inline-size: -webkit-fit-content;
    inline-size: -moz-fit-content;
    inline-size: fit-content;
    margin-inline: auto;
  }
}
.detail-intro__category {
  font-size: clamp(0.8125rem, 0.7312rem + 0.3468vw, 1rem);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
@media all and (max-width: 896px) {
  .detail-intro__category {
    gap: 8px;
    margin-top: 24px;
  }
}
.detail-intro__category__item {
  display: none;
  text-align: center;
  padding: 0.25em 1.25em;
  border-radius: 8px;
  background: #fff;
  color: #655D4B;
  font-weight: 500;
}
.detail-intro__category__item.active {
  display: block;
}

.detail-wrapper {
  position: relative;
  z-index: 20;
}

.detail-container {
  max-width: 1030px;
  container-type: inline-size;
}

.detail-slide {
  margin-top: 64px;
  margin-inline: calc(50% - 50vw);
}
@media all and (max-width: 896px) {
  .detail-slide {
    margin-top: 40px;
  }
}
.detail-slide:not(:has(.splide__slide)) {
  display: none;
}
.detail-slide__img {
  aspect-ratio: 773/434;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
}
@media all and (max-width: 896px) {
  .detail-slide__img {
    border-radius: 15px;
  }
}
.detail-slide__img img {
  display: block;
  width: auto;
  height: 100%;
  margin-inline: auto;
}
.detail-slide .splide {
  padding-bottom: 20px;
}
@media all and (max-width: 896px) {
  .detail-slide .splide {
    padding-bottom: 16px;
  }
}
.detail-slide .splide__list {
  align-items: center;
}
.detail-slide .splide__slide {
  width: 60%;
  max-width: 773px;
  border-radius: 30px;
  box-shadow: 15px 15px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}
@media all and (max-width: 896px) {
  .detail-slide .splide__slide {
    border-radius: 15px;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
  }
}
.detail-slide .splide__slide.is-active {
  width: 80%;
  max-width: 1030px;
  border-radius: 40px;
}
@media all and (max-width: 896px) {
  .detail-slide .splide__slide.is-active {
    border-radius: 20px;
  }
}
.detail-slide .splide__slide.is-active .detail-slide__img {
  border-radius: 40px;
}
@media all and (max-width: 896px) {
  .detail-slide .splide__slide.is-active .detail-slide__img {
    border-radius: 20px;
  }
}
.detail-slide .splide__arrows {
  width: 80%;
  max-width: 1030px;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% calc(-50% - 20px);
}
@media all and (max-width: 896px) {
  .detail-slide .splide__arrows {
    translate: -50% calc(-50% - 12px);
  }
}
.detail-slide .splide__arrow {
  width: min(6vw, 80px);
  height: min(6vw, 80px);
  opacity: 1;
  border-radius: 0;
  background: url("../images/slide_arrow_next.svg") center center/contain no-repeat;
}
@media all and (max-width: 480px) {
  .detail-slide .splide__arrow {
    width: 32px;
    height: 32px;
  }
}
.detail-slide .splide__arrow svg {
  display: none;
}
.detail-slide .splide__arrow--prev {
  background-image: url("../images/slide_arrow_prev.svg");
  left: -5%;
}
@media all and (max-width: 480px) {
  .detail-slide .splide__arrow--prev {
    left: -20px;
  }
}
.detail-slide .splide__arrow--next {
  right: -5%;
}
@media all and (max-width: 480px) {
  .detail-slide .splide__arrow--next {
    right: -20px;
  }
}
.detail-slide .splide__pagination {
  bottom: 0;
}
.detail-slide .splide__pagination__page {
  width: 16px;
  height: 16px;
  margin: 0 10px;
  background: #655D4B;
  opacity: 0.4;
  outline: 3px solid transparent;
}
@media all and (max-width: 896px) {
  .detail-slide .splide__pagination__page {
    width: 10px;
    height: 10px;
  }
}
.detail-slide .splide__pagination__page.is-active {
  transform: scale(1);
  opacity: 1;
  outline-color: #fff;
}

.detail-contents {
  padding: 6.2cqw;
  display: flex;
  background: #fff;
  color: #3E3A39;
  border-radius: 40px;
  margin-top: 48px;
}
@media all and (max-width: 896px) {
  .detail-contents {
    display: block;
    padding: 24px;
    border-radius: 20px;
    margin-top: 40px;
  }
}
.detail-contents__ttl {
  flex-shrink: 0;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-right: 3.1cqw;
  margin-right: 3.1cqw;
  border-right: 1px solid #DEDEDE;
}
@media all and (max-width: 896px) {
  .detail-contents__ttl {
    align-items: center;
    padding: 0 0 16px 0;
    margin: 0 0 16px 0;
    border-right: none;
    border-bottom: 1px solid #DEDEDE;
  }
}
.detail-contents__ttl__jp {
  font-size: clamp(1.125rem, 0.9103rem + 0.916vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #655D4B;
}
.detail-contents__ttl__en {
  font-size: clamp(0.875rem, 0.8034rem + 0.3053vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-top: 8px;
}
@media all and (max-width: 896px) {
  .detail-contents__ttl__en {
    margin-top: 4px;
  }
}
.detail-contents__item {
  flex-grow: 1;
}
.detail-contents__item > * {
  margin-top: 32px;
}
@media all and (max-width: 896px) {
  .detail-contents__item > * {
    margin-top: 16px;
  }
}
.detail-contents__item > *:first-child {
  margin-top: 0;
}
.detail-contents__item p {
  font-size: clamp(0.9375rem, 0.8302rem + 0.458vw, 1.125rem);
  letter-spacing: 0.2em;
}
@media all and (max-width: 896px) {
  .detail-contents__item p {
    letter-spacing: 0.08em;
  }
}
.detail-contents__item p.txt_en {
  font-size: clamp(0.875rem, 0.8034rem + 0.3053vw, 1rem);
  letter-spacing: 0.1em;
}
@media all and (max-width: 896px) {
  .detail-contents__item p.txt_en {
    letter-spacing: 0.05em;
  }
}

.detail-list {
  margin-top: 48px;
  color: #3E3A39;
}
@media all and (max-width: 896px) {
  .detail-list {
    margin-top: 40px;
  }
}
.detail-list:before {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #DB543C 0%, #DB543C 14.29%, #DB9B40 14.29%, #DB9B40 28.57%, #D5B95B 28.57%, #D5B95B 42.86%, #9DB85C 42.86%, #9DB85C 57.14%, #35A36E 57.14%, #35A36E 71.43%, #008DBB 71.43%, #008DBB 85.71%, #875C94 85.71%, #875C94 100%);
  border-radius: 9999px;
}
.detail-list__item {
  padding-block: clamp(1.25rem, 0.8206rem + 1.8321vw, 2rem);
  border-bottom: 2px solid #fff;
  display: flex;
  gap: 20px 4.66cqw;
}
@media all and (max-width: 896px) {
  .detail-list__item {
    flex-direction: column;
  }
}
.detail-list__item dt {
  flex-shrink: 0;
  width: 292px;
}
@media all and (max-width: 896px) {
  .detail-list__item dt {
    text-align: center;
    width: 100%;
  }
}
.detail-list__item dd {
  flex-grow: 1;
  display: flex;
  align-items: center;
}
@media all and (max-width: 896px) {
  .detail-list__item dd {
    width: 100%;
    justify-content: center;
  }
}
.detail-list__ttl {
  font-size: clamp(1rem, 0.7137rem + 1.2214vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #655D4B;
}
.detail-list__sub {
  font-size: clamp(0.875rem, 0.8034rem + 0.3053vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-top: 10px;
}
@media all and (max-width: 896px) {
  .detail-list__sub {
    margin-top: 4px;
  }
}
.detail-list .booth-block {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
@media all and (max-width: 896px) {
  .detail-list .booth-block {
    justify-content: center;
    flex-direction: column;
  }
}
.detail-list .booth-txt {
  flex-shrink: 0;
  font-size: clamp(1.25rem, 0.5344rem + 3.0534vw, 2.5rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.2em;
  color: #E94709;
}
.detail-list .booth-btn {
  width: 220px;
}
.detail-list .booth-btn > a {
  width: 100%;
  text-align: center;
  display: block;
  padding: 0.4em 3.8em 0.4em 2.25em;
  background: #fff;
  color: #E94709;
  font-size: clamp(0.875rem, 0.8034rem + 0.3053vw, 1rem);
  font-weight: 700;
  border: 2px solid #E94709;
  border-radius: 9999px;
  position: relative;
}
.detail-list .booth-btn > a::before {
  content: "";
  display: inline-block;
  width: 1.6em;
  height: 1.6em;
  background: url("../images/icon_pdf.svg") center center/contain no-repeat;
  position: absolute;
  top: 50%;
  right: 1.2em;
  translate: 0 -50%;
}
.detail-list .items-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: clamp(0.8125rem, 0.7052rem + 0.458vw, 1rem);
  font-weight: 500;
}
@media all and (max-width: 896px) {
  .detail-list .items-list {
    justify-content: center;
  }
}
.detail-list .items-list > li {
  display: none;
  padding: 0.25em 1.25em;
  background: #655D4B;
  color: #fff;
  border-radius: 0.5em;
}
.detail-list .items-list > li.active {
  display: block;
}
.detail-list .overseas-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 40px;
  font-size: clamp(0.9375rem, 0.8302rem + 0.458vw, 1.125rem);
  font-weight: 500;
}
@media all and (max-width: 896px) {
  .detail-list .overseas-list {
    justify-content: center;
  }
}
.detail-list .overseas-list > li {
  display: none;
}
.detail-list .overseas-list > li.active {
  display: block;
}
.detail-list .address-txt {
  font-size: clamp(0.9375rem, 0.8302rem + 0.458vw, 1.125rem);
  font-weight: 500;
}
.detail-list .address-txt a[target=_blank]::after {
  content: "";
  display: inline-block;
  width: 1.1em;
  height: 1.1em;
  vertical-align: -0.2em;
  background: url("../images/icon_blank.svg") center center/contain no-repeat;
  margin-left: 0.4em;
}

.detail-btn {
  text-align: center;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
@media all and (max-width: 896px) {
  .detail-btn {
    gap: 20px 16px;
    margin-top: 40px;
  }
}
@media all and (max-width: 600px) {
  .detail-btn {
    grid-template-columns: repeat(1, 1fr);
  }
}
.detail-btn:not(:has(> .detail-btn__item:nth-child(2))) {
  max-width: 500px;
  margin-inline: auto;
}
@media all and (max-width: 896px) {
  .detail-btn:not(:has(> .detail-btn__item:nth-child(2))) {
    max-width: 380px;
  }
}
.detail-btn__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 12px;
}
@media all and (max-width: 896px) {
  .detail-btn__item {
    gap: 8px;
  }
}
.detail-btn__link {
  display: inherit;
  grid-template-rows: inherit;
  grid-row: inherit;
  gap: inherit;
  background: #4C9052;
  color: #fff;
  padding: 32px 20px;
  border-radius: 20px;
  box-shadow: 2px 2px 0 #0F5715;
}
@media all and (max-width: 896px) {
  .detail-btn__link {
    padding: 24px 12px;
    border-radius: 16px;
  }
}
@media all and (max-width: 896px) {
  .detail-btn__icon img {
    width: 42px;
  }
}
.detail-btn__block {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.detail-btn__sub {
  font-size: clamp(0.8125rem, 0.7052rem + 0.458vw, 1rem);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 4px;
}
.detail-btn__txt {
  font-size: clamp(1.125rem, 0.9103rem + 0.916vw, 1.5rem);
  font-weight: 700;
  line-height: 1.5;
}
@media all and (max-width: 896px) {
  .detail-btn__arrow img {
    width: 24px;
  }
}