@charset "UTF-8";

/*! destyle.css v4.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.min.css */

/* ===================================
   ボックスモデルのリセット
   全要素のbox-sizingをborder-boxに統一し、
   ボーダーのデフォルトスタイルを設定
   =================================== */

*,
::before,
::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* ===================================
   HTML要素の基本設定
   行の高さ、テキストサイズの調整、
   タップハイライトの無効化
   =================================== */

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

/* ===================================
   Body要素のマージンリセット
   =================================== */

body {
  margin: 0;
}

/* ===================================
   main要素のブロック表示
   IE対策として明示的にblock表示を指定
   =================================== */

main {
  display: block;
}

/* ===================================
   ブロック要素のマージンリセット
   段落、テーブル、引用、アドレス、
   整形済みテキスト、iframe、フォーム、
   図、定義リストのマージンを0に
   =================================== */

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* ===================================
   見出し要素のリセット
   フォントサイズ、太さ、マージンを
   継承または0に設定
   =================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* ===================================
   リスト要素のリセット
   マージン、パディング、リストスタイルを削除
   =================================== */

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ===================================
   定義リストの用語（dt）
   太字に設定
   =================================== */

dt {
  font-weight: 700;
}

/* ===================================
   定義リストの説明（dd）
   左マージンを削除
   =================================== */

dd {
  margin-left: 0;
}

/* ===================================
   水平線（hr）のリセット
   高さ、オーバーフロー、ボーダー、
   マージン、色の統一
   =================================== */

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/* ===================================
   整形済みテキスト（pre）
   等幅フォントを指定
   =================================== */

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

/* ===================================
   住所（address）
   イタリック体を解除
   =================================== */

address {
  font-style: inherit;
}

/* ===================================
   アンカーリンク（a）のリセット
   背景色、下線、色を削除
   =================================== */

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/* ===================================
   略語（abbr）
   タイトル属性がある場合、点線の下線を表示
   =================================== */

abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

/* ===================================
   太字要素（b, strong）
   より太いフォントウェイトを指定
   =================================== */

b,
strong {
  font-weight: bolder;
}

/* ===================================
   コード関連要素（code, kbd, samp）
   等幅フォントを指定
   =================================== */

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

/* ===================================
   小さいテキスト（small）
   フォントサイズを80%に
   =================================== */

small {
  font-size: 80%;
}

/* ===================================
   下付き・上付き文字（sub, sup）
   フォントサイズと位置の調整
   =================================== */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* 下付き文字の位置調整 */

sub {
  bottom: -0.25em;
}

/* 上付き文字の位置調整 */

sup {
  top: -0.5em;
}

/* ===================================
   埋め込みコンテンツ（svg, img, embed, object, iframe）
   垂直方向の配置を下揃えに
   =================================== */

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* ===================================
   フォーム要素のリセット
   ブラウザのデフォルトスタイルを削除し、
   親要素からスタイルを継承
   =================================== */

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

/* ===================================
   クリック可能なボタン
   カーソルをポインターに
   =================================== */

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

/* ===================================
   無効化されたselect要素
   透明度を継承（薄くならないように）
   =================================== */

select:disabled {
  opacity: inherit;
}

/* ===================================
   option要素のパディングリセット
   =================================== */

option {
  padding: 0;
}

/* ===================================
   fieldset要素のリセット
   マージン、パディング、最小幅を削除
   =================================== */

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

/* ===================================
   legend要素のパディングリセット
   =================================== */

legend {
  padding: 0;
}

/* ===================================
   progress要素の垂直配置
   =================================== */

progress {
  vertical-align: baseline;
}

/* ===================================
   textarea要素
   オーバーフローをautoに設定
   =================================== */

textarea {
  overflow: auto;
}

/* ===================================
   number入力のスピンボタン（Webkit）
   高さをautoに設定
   =================================== */

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/* ===================================
   検索入力フィールドのスタイル調整
   =================================== */

[type=search] {
  outline-offset: -2px;
}

/* 検索フィールドのデコレーション削除（Webkit） */

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* ===================================
   ファイルアップロードボタン（Webkit）
   ボタンの外観とフォントを継承
   =================================== */

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

/* ===================================
   number入力（Firefox）
   スピンボタンを非表示
   =================================== */

[type=number] {
  -moz-appearance: textfield;
}

/* ===================================
   label要素（for属性あり）
   カーソルをポインターに
   =================================== */

label[for] {
  cursor: pointer;
}

/* ===================================
   details要素
   ブロック表示に設定（IE対策）
   =================================== */

details {
  display: block;
}

/* ===================================
   summary要素
   リストアイテムとして表示
   =================================== */

summary {
  display: list-item;
}

/* ===================================
   contenteditable要素のフォーカス時
   アウトラインを自動表示
   =================================== */

[contenteditable]:focus {
  outline: auto;
}

/* ===================================
   テーブル要素のリセット
   ボーダー色を継承、ボーダーを結合
   =================================== */

table {
  border-color: inherit;
  border-collapse: collapse;
}

/* ===================================
   テーブルキャプション
   左寄せに設定
   =================================== */

caption {
  text-align: left;
}

/* ===================================
   テーブルセル（td, th）
   垂直方向上揃え、パディングを削除
   =================================== */

td,
th {
  vertical-align: top;
  padding: 0;
}

/* ===================================
   テーブルヘッダーセル（th）
   左寄せ、太字に設定
   =================================== */

th {
  text-align: left;
  font-weight: 700;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}

.mainContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

main {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}

.inner {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0 60px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.common-head h2 {
  margin-top: 24.3px;
  font-size: 41.632px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.771px;
  color: #000000;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.common-head h2 span {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  background: none;
  color: inherit;
  padding: 0 6.71px;
}

.common-head .explain {
  margin-top: 20px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 1px;
  color: #000000;
}

.with-dot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.4px;
  /* 160% */
  text-transform: capitalize;
  color: #000000;
}

.with-dot::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  margin-right: 8px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-preferred-size: 4px;
  flex-basis: 4px;
  background: #0080d9;
}

.with-dot--blue {
  color: #0080d9;
}

.with-dot--navy {
  color: #002b50;
}

.with-dot--gray {
  color: #474645;
}

.with-dot--white {
  color: #ffffff;
}

a.with-dot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.4px;
  /* 160% */
  text-transform: capitalize;
  color: #000000;
  text-decoration: none;
}

a.with-dot::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  margin-right: 8px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-preferred-size: 4px;
  flex-basis: 4px;
  background: #0080d9;
}

a.with-dot:hover,
a.with-dot.current {
  color: #0080d9;
}

.with-dot-accent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.4px;
  /* 160% */
  text-transform: capitalize;
  color: #000000;
}

.with-dot-accent::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  margin-right: 8px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-preferred-size: 4px;
  flex-basis: 4px;
  background: #0080d9;
}

.sidebar-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  padding: 10px 24px;
  text-decoration: none;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.sidebar-btn > img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.sidebar-btn .texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 140px;
  text-align: center;
}

.sidebar-btn.btn-phone {
  border: 1px solid #002b50;
  background: #ffffff;
}

.sidebar-btn.btn-phone .number {
  color: #002b50;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 16.8px;
}

.sidebar-btn.btn-phone .sub {
  color: #002b50;
  font-size: 9px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}

.sidebar-btn.btn-phone:hover {
  -webkit-box-shadow: 0 12px 32px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 12px 32px 0 rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(-4px) scale(1.02);
  transform: translateY(-4px) scale(1.02);
}

.sidebar-btn.btn-document {
  border: 1px solid #0080d9;
  background: #ffffff;
}

.sidebar-btn.btn-document .text {
  color: #0080d9;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 16.8px;
}

.sidebar-btn.btn-document:hover {
  -webkit-box-shadow: 0 12px 32px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 12px 32px 0 rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(-4px) scale(1.02);
  transform: translateY(-4px) scale(1.02);
}

.sidebar-btn.btn-consultation {
  border: 1px solid #0080d9;
  background: #0080d9;
}

.sidebar-btn.btn-consultation .text {
  color: #ffffff;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 16.8px;
}

.sidebar-btn.btn-consultation:hover {
  -webkit-box-shadow: 0 12px 32px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 12px 32px 0 rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(-4px) scale(1.02);
  transform: translateY(-4px) scale(1.02);
}

.common-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  padding: 10px 24px;
  text-decoration: none;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.1);
  width: 220px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.common-btn > img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.common-btn .texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 140px;
  text-align: center;
}

.common-btn.btn-phone {
  border: 1px solid #002b50;
  background: #ffffff;
}

.common-btn.btn-phone .number {
  color: #002b50;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 16.8px;
}

.common-btn.btn-phone .sub {
  color: #002b50;
  font-size: 9px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}

.common-btn.btn-phone:hover {
  -webkit-box-shadow: 0 12px 32px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 12px 32px 0 rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(-4px) scale(1.02);
  transform: translateY(-4px) scale(1.02);
}

.common-btn.btn-document {
  border: 1px solid #0080d9;
  background: #ffffff;
}

.common-btn.btn-document .text {
  color: #0080d9;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 16.8px;
}

.common-btn.btn-document:hover {
  -webkit-box-shadow: 0 12px 32px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 12px 32px 0 rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(-4px) scale(1.02);
  transform: translateY(-4px) scale(1.02);
}

.common-btn.btn-consultation {
  border: 1px solid #0080d9;
  background: #0080d9;
}

.common-btn.btn-consultation .text {
  color: #ffffff;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 16.8px;
}

.common-btn.btn-consultation:hover {
  -webkit-box-shadow: 0 12px 32px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 12px 32px 0 rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(-4px) scale(1.02);
  transform: translateY(-4px) scale(1.02);
}

.btn-pill {
  --btn-bg: #0080d9;
  --btn-color: #ffffff;
  --btn-border: transparent;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  border: 1px solid var(--btn-border);
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-color);
  text-decoration: none;
  font-size: 19.535px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn-pill:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.15);
}

.btn-pill > img {
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.btn-pill--arrow-left {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.btn-pill--arrow-left > img {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.btn-pill--arrow-right > img {
  -webkit-transform: none;
  transform: none;
}

.btn-pill--arrow-reverse > img {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.btn-pill2 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 190px;
  padding: 16px 32px;
  border: 1px solid #002b50;
  border-radius: 114px;
  background: #ffffff;
  color: #002b50;
  text-decoration: none;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.8px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn-pill2:hover {
  -webkit-box-shadow: 0 12px 32px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 12px 32px 0 rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(-4px) scale(1.02);
  transform: translateY(-4px) scale(1.02);
}

.btn-pill2 > img {
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.btn-pill2--arrow-left {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.btn-pill2--arrow-left > img {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.btn-pill2--arrow-right > img {
  -webkit-transform: none;
  transform: none;
}

.btn-pill2--arrow-reverse > img {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.btn-pill2--navy {
  background: #002b50;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  line-height: 16.8px;
}

.btn-pill3 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 206px;
  height: 54px;
  padding: 10px 24px;
  border: none;
  border-radius: 114px;
  background: #002b50;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn-pill3:hover {
  -webkit-box-shadow: 0 12px 32px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 12px 32px 0 rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(-4px) scale(1.02);
  transform: translateY(-4px) scale(1.02);
}

.btn-pill3 > img {
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.btn-pill3--arrow-left {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.btn-pill3--arrow-left > img {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.btn-pill3--arrow-right > img {
  -webkit-transform: none;
  transform: none;
}

.btn-pill3--arrow-reverse > img {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.sp-menu-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 16px;
  text-decoration: none;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.sp-menu-btn > img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  -o-object-fit: cover;
  object-fit: cover;
}

.sp-menu-btn .texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
}

.sp-menu-btn.btn-phone {
  border: 1px solid #002b50;
  background: #ffffff;
}

.sp-menu-btn.btn-phone .number {
  color: #002b50;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 16.8px;
}

.sp-menu-btn.btn-phone .sub {
  color: #002b50;
  font-size: 9px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}

.sp-menu-btn.btn-phone:hover {
  -webkit-box-shadow: 0 12px 32px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 12px 32px 0 rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(-4px) scale(1.02);
  transform: translateY(-4px) scale(1.02);
}

.sp-menu-btn.btn-document {
  border: 1px solid #0080d9;
  background: #ffffff;
}

.sp-menu-btn.btn-document .text {
  color: #0080d9;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 16.8px;
}

.sp-menu-btn.btn-document:hover {
  -webkit-box-shadow: 0 12px 32px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 12px 32px 0 rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(-4px) scale(1.02);
  transform: translateY(-4px) scale(1.02);
}

.sp-menu-btn.btn-consultation {
  border: 1px solid #0080d9;
  background: #0080d9;
}

.sp-menu-btn.btn-consultation .text {
  color: #ffffff;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 16.8px;
}

.sp-menu-btn.btn-consultation:hover {
  -webkit-box-shadow: 0 12px 32px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 12px 32px 0 rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(-4px) scale(1.02);
  transform: translateY(-4px) scale(1.02);
}

header {
  display: none;
}

header .header-inner {
  width: 100%;
  padding-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
}

header .header-inner a .img {
  width: 129.09474px;
  height: auto;
}

header .header-inner a .img img {
  width: 100%;
  height: auto;
}

header .header-inner .hamburger {
  width: 60px;
  height: 60px;
  padding: 10px;
  border-left: 1px solid #002b50;
  border-bottom: 1px solid #002b50;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

header .header-inner .hamburger span {
  width: 40px;
  height: 1px;
  background: #002b50;
  display: block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform-origin: center;
  transform-origin: center;
}

header .header-inner .hamburger.is-open span:first-child {
  -webkit-transform: translateY(5.5px) rotate(20deg);
  transform: translateY(5.5px) rotate(20deg);
}

header .header-inner .hamburger.is-open span:last-child {
  -webkit-transform: translateY(-5.5px) rotate(-20deg);
  transform: translateY(-5.5px) rotate(-20deg);
}

.sp-nav {
  display: none;
}

.sp-nav-overlay {
  display: none;
}

footer {
  background: #f7f7f7;
  padding: 80px 0 20px;
  overflow: hidden;
  position: relative;
}

footer .bg {
  position: absolute;
  top: 180px;
  width: 100%;
  height: 100%;
  z-index: 1;
}

footer .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

footer .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 48px;
  position: relative;
  z-index: 2;
}

footer .content .upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

footer .content .upper .upper-links ul {
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 48px;
}

footer .content .upper .upper-links ul li a {
  color: #474645;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 13px;
  /* 100% */
  letter-spacing: 0.26px;
}

footer .content .upper .lower-links ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 24px;
}

footer .content .upper .lower-links ul li a {
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 19.2px;
  /* 160% */
  letter-spacing: 0.24px;
}

footer .content .middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

footer .content .middle .sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}

footer .content .middle .sns a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 50%;
}

footer .content .middle .sns a .img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

footer .content .lower {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 32px;
}

footer .content .lower p {
  font-family: "Lato", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 15.6px;
  /* 120% */
  letter-spacing: 0.26px;
}

footer .content .lower .img {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

footer .content .lower .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.sidebarContent.is-fadeout {
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebarContent.is-absolute {
  position: absolute !important;
  top: auto;
  left: 0;
  right: 0;
}

#sidebar {
  width: 260px;
  /* 方眼紙模様：背景をビューポートに固定し、スクロール時に方眼が動かないようにする */
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
  background-size: 20px 20px;
  background-repeat: repeat;
  background-position: center center;
  background-attachment: fixed;
  background-color: #ffffff;
}

#sidebar .sidebarContent {
  width: 260px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  top: 0;
  left: 0;
  z-index: 1000;
  position: fixed;
}

#sidebar .sidebarContent .upper {
  padding: 40px 20px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}

#sidebar .sidebarContent .upper a {
  display: block;
}

#sidebar .sidebarContent .upper .sidebarLogo {
  padding: 9px 18px;
  background: #ffffff;
}

#sidebar .sidebarContent .upper .sidebarLogo .img {
  width: 100%;
  height: auto;
}

#sidebar .sidebarContent .upper .sidebarLogo .img img {
  width: 100%;
  height: auto;
}

#sidebar .sidebarContent .upper h2 {
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  /* 32px */
  letter-spacing: 1px;
  color: #2266ad;
  font-family: "Shippori Mincho", serif;
}

#sidebar .sidebarContent .upper h2 img {
  vertical-align: baseline;
  width: 65px;
  height: auto;
  padding: 0 2px;
}

#sidebar .sidebarContent .middle {
  border-top: 1px solid #002b50;
  border-bottom: 1px solid #002b50;
  padding: 20px;
}

#sidebar .sidebarContent .middle .sidebarMenu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}

#sidebar .sidebarContent .middle .sidebarMenu li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  color: #002b50;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  /* 15px */
  letter-spacing: 1px;
}

#sidebar .sidebarContent .middle .sidebarMenu li a::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  margin-right: 8px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: transparent;
}

#sidebar .sidebarContent .middle .sidebarMenu li a:hover::before {
  background: #0080d9;
}

#sidebar .sidebarContent .middle .sidebarMenu li.current-menu-item a::before {
  background: #0080d9;
}

#sidebar .sidebarContent .lower {
  padding: 20px;
}

#sidebar .sidebarContent .lower .btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

#sidebar .sidebarContent .lower .sns {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#sidebar .sidebarContent .lower .sns a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

#sidebar .sidebarContent .lower .sns a .img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.share {
  border: 1px dashed rgba(0, 0, 0, 0.1);
  padding: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  border-radius: 12px;
}

.share .share-title {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  /* 22.4px */
  letter-spacing: 1px;
  color: #606178;
}

.share .share-list {
  margin-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px;
}

.share .share-list li {
  list-style: none;
}

.share .share-list a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  padding: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 62px;
  color: #002b50;
  text-decoration: none;
  width: 165px;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.share .share-list a img {
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: block;
}

.share .share-list a span {
  width: 107px;
  display: block;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  /* 16.8px */
  text-align: center;
}

.share .share-list a:hover {
  background: #002b50;
  color: #ffffff;
}

.case {
  background: #ffffff;
  padding: 100px 0;
}

.case .common-head h2 {
  background: #002b50;
  color: #ffffff;
}

.case .common-head h2 span {
  color: #ffffff;
}

.case .common-head .explain {
  color: #474645;
}

.case .swiper-inner {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0 60px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.case .case-swiper {
  margin-top: 40px;
  position: relative;
  padding: 40px 74px !important;
  background: #e5f2fb;
  overflow: hidden;
}

.case .case-swiper::before,
.case .case-swiper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 88px;
  width: 74px;
  background: #e5f2fb;
  z-index: 12;
  pointer-events: none;
}

.case .case-swiper::before {
  left: 0;
}

.case .case-swiper::after {
  right: 0;
}

.case .case-swiper .slide {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: auto;
  -ms-flex-item-align: stretch;
  align-self: stretch;
}

.case .case-swiper .slide .slide-head {
  max-width: 840px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.case .case-swiper .slide .slide-head h3 {
  margin: 0;
  color: #000000;
  font-size: 24px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 1.2px;
}

.case .case-swiper .slide .badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 96px;
  padding: 5px 20px;
  border-radius: 999px;
  background: #0080d9;
  color: #ffffff;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  letter-spacing: 0.84px;
  height: 34px;
}

.case .case-swiper .slide .curve {
  width: 401px;
  height: 95px;
  margin: 20px auto -10px;
  background: url("../img/front-page/top_case_curve_arrow.svg") no-repeat center/contain;
}

.case .case-swiper .slide .columns {
  max-width: 840px;
  margin: 0 auto;
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
}

.case .case-swiper .slide .columns .sp-curve {
  display: none;
}

.case .case-swiper .slide .slide-footer {
  max-width: 840px;
  margin: 24px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}

.case .case-swiper .slide .slide-footer .thumb {
  width: 120px;
  height: 120px;
  overflow: hidden;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.case .case-swiper .slide .slide-footer .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.case .case-swiper .slide .slide-footer .meta .company {
  color: #474645;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}

.case .case-swiper .slide .slide-footer .meta .tags {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}

.case .case-swiper .slide .slide-footer .meta .tags .tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.case .case-swiper .slide .slide-footer .meta .tags .tag .pill {
  color: #474645;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 34px;
  padding: 5px 10px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 170%;
  border-radius: 40px;
  border: 1px solid #dddcdd;
}

.case .case-swiper .slide .slide-footer .meta .tags .tag .area {
  color: #474645;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}

.case .case-swiper .box .content {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
}

.case .case-swiper .box .upper {
  padding: 20px;
}

.case .case-swiper .box .upper .lead {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 160%;
  color: #474645;
}

.case .case-swiper .box .lower {
  padding: 20px;
  background: -webkit-gradient(linear, left top, left bottom, from(#f4fbfc), to(#fff));
  background: linear-gradient(180deg, #f4fbfc 0%, #fff 100%);
}

.case .case-swiper .box .lower ul {
  margin: 0;
  padding-left: 20px;
}

.case .case-swiper .box .lower ul li {
  list-style: disc;
  font-size: 14px;
  font-weight: 400;
  line-height: 23.2px;
  letter-spacing: 0.7px;
  color: #474645;
}

.case .case-swiper .box .lower ul ul {
  padding-left: 0;
}

.case .case-swiper .box .lower ul ul li {
  list-style: none;
}

.case .case-swiper .box.before h4 {
  margin-bottom: 12px;
  font-family: "Lato", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 46px;
  letter-spacing: 0.92px;
  color: #474645;
  text-align: center;
}

.case .case-swiper .box.after h4 {
  margin-bottom: 12px;
  font-family: "Lato", sans-serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 46px;
  letter-spacing: 0.92px;
  color: #002b50;
  text-align: center;
}

.case .case-swiper .box.after .lead {
  color: #0080d9;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
}

.case .case-swiper .nav {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(0, 128, 217, 0.45);
  background: #ffffff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.case .case-swiper .nav span {
  width: 17px;
  height: 14px;
  display: inline-block;
  background: url("../img/front-page/top_case_nav_arrow.svg") no-repeat center/contain;
}

.case .case-swiper .nav.nav-prev span {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.case .case-swiper .nav.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
}

.case .case-swiper .case-nav-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}

.case .case-swiper .pagination {
  margin-top: 20px;
  border-top: 1px solid rgba(0, 128, 217, 0.15);
  padding-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
}

.case .case-swiper .pagination .swiper-pagination-bullet {
  width: 130px;
  height: 32px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 8px 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  border-radius: 999px;
  border: 2px solid rgba(0, 128, 217, 0.6);
  background: #e6f2fc;
  color: #0080d9;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  letter-spacing: 0.84px;
  opacity: 1;
}

.case .case-swiper .pagination .swiper-pagination-bullet-active {
  background: #0080d9;
  color: #ffffff;
  border-color: #0080d9;
}

@media screen and (min-width: 1025px) {
  .case .case-swiper .case-nav-btns .nav-prev {
    position: absolute;
    top: 50%;
    left: 10px;
    -webkit-transform: translateY(-58%);
    transform: translateY(-58%);
  }

  .case .case-swiper .case-nav-btns .nav-next {
    position: absolute;
    top: 50%;
    right: 10px;
    -webkit-transform: translateY(-58%);
    transform: translateY(-58%);
  }
}

@media screen and (max-width: 1360px) {
  .inner {
    max-width: 100%;
    padding: 0 20px;
  }

  .case .swiper-inner {
    max-width: 100%;
    padding: 0 20px;
  }
}

@media screen and (max-width: 1024px) {
  .common-head h2 {
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 42px */
    letter-spacing: 0.771px;
  }

  .common-head h2 span {
    padding: 6.71px;
  }

  .common-head .explain {
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%;
    /* 24px */
    letter-spacing: 1px;
  }

  .btn-pill {
    padding: 16px 32px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.4px;
    /* 140% */
    letter-spacing: 0.8px;
  }

  .btn-pill > img {
    width: 18px;
    height: 18px;
  }

  header {
    display: block;
    position: sticky;
    top: 0;
    left: 0;
    background: #ffffff;
    width: 100%;
    z-index: 99999;
    height: 60px;
    border-bottom: 1px solid #002b50;
  }

  .sp-nav {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: #ffffff;
    z-index: 99998;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.35s ease;
    transition: -webkit-transform 0.35s ease;
    transition: transform 0.35s ease;
    transition: transform 0.35s ease, -webkit-transform 0.35s ease;
    padding: 106px 20px 20px;
    background: #f7f7f7;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    -ms-scroll-chaining: none;
    overscroll-behavior: contain;
  }

  .sp-nav.is-open {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  .sp-nav .spMenu {
    list-style: none;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }

  .sp-nav .spMenu li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    color: #002b50;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    /* 20px */
    letter-spacing: 1px;
  }

  .sp-nav .spMenu li a::before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    margin-right: 8px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background: transparent;
  }

  .sp-nav .spMenu li a:hover::before {
    background: #0080d9;
  }

  .sp-nav .spMenu li.current-menu-item a::before {
    background: #0080d9;
  }

  .sp-nav .btns {
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }

  .sp-nav .btns .upper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
  }

  .sp-nav .btns .upper .sp-menu-btn {
    width: calc((100% - 10px) / 2);
  }

  .sp-nav .btns .lower {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .sp-nav .btns .lower .sns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .sp-nav .btns .lower .sns a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
  }

  .sp-nav .btns .lower .sns a .img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .sp-nav .spMenuLower {
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }

  .sp-nav .spMenuLower li {
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 19.2px;
    /* 160% */
    letter-spacing: 0.24px;
  }

  body.sp-menu-open {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    overflow: hidden;
  }

  .sp-nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 99997;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.35s ease;
    transition: opacity 0.35s ease;
  }

  .sp-nav-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  footer {
    padding: 80px 0;
  }

  footer .bg {
    top: 90.47px;
  }

  footer .content .upper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 60px;
  }

  footer .content .upper .links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
  }

  footer .content .upper .upper-links ul {
    gap: 20px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: auto;
  }

  footer .content .upper .lower-links ul {
    gap: 20px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  footer .content .middle {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  footer .content .lower {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  footer .content .lower p {
    font-size: 10px;
    font-style: normal;
    font-weight: 300;
    line-height: 15.6px;
    /* 156% */
    letter-spacing: 0.26px;
  }

  #sidebar {
    display: none;
  }

  .share {
    padding: 16px;
  }

  .share .share-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .share .share-list a {
    width: 150px;
    background-color: #ffffff;
  }

  .share .share-list a span {
    width: 92px;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    /* 16.8px */
  }

  .case .swiper-inner {
    max-width: 100%;
    width: 100%;
    padding: 0 20px;
  }

  .case .case-swiper {
    padding: 40px 0 !important;
  }

  .case .case-swiper::before,
  .case .case-swiper::after {
    display: none;
  }

  .case .case-swiper .slide {
    padding: 0 20px;
    overflow: hidden;
  }

  .case .case-swiper .slide .slide-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 100%;
  }

  .case .case-swiper .slide .slide-head h3 {
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    /* 25.2px */
    letter-spacing: 0.9px;
  }

  .case .case-swiper .slide .curve {
    display: none;
  }

  .case .case-swiper .slide .columns {
    grid-template-columns: 1fr;
    position: relative;
    margin-top: 20px;
  }

  .case .case-swiper .slide .columns .sp-curve {
    display: block;
    position: absolute;
    top: 48%;
    right: -20px;
    margin: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transform-origin: center;
    transform-origin: center;
    pointer-events: none;
  }

  .case .case-swiper .slide .slide-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .case .case-swiper .slide .slide-footer .meta .tags {
    margin-top: 10px;
  }

  .case .case-swiper .slide .slide-footer .meta .tags .tag {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .case .case-swiper .box .content {
    width: 100%;
  }

  .case .case-swiper .box .upper .lead {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%;
    /* 28.8px */
  }

  .case .case-swiper .box.before h4 {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 24px */
    letter-spacing: 0.92px;
  }

  .case .case-swiper .box.after h4 {
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 46px;
    /* 127.778% */
    letter-spacing: 0.92px;
  }

  .case .case-swiper .case-nav-btns .nav {
    width: 72px;
    height: 72px;
  }

  .case .case-swiper .pagination {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  #sidebar {
    display: none !important;
  }

  #front-page {
    padding-left: 0;
  }
}/*# sourceMappingURL=style.css.map */
