@charset "UTF-8";
/*
  Made by Elly Loel - https://ellyloel.com/
  参考記事:
    - Josh W Comeau - https://courses.joshwcomeau.com/css-for-js/treasure-trove/010-global-styles/
    - Andy Bell - https://piccalil.li/blog/a-modern-css-reset/
    - Adam Argyle - https://unpkg.com/open-props@1.3.16/normalize.min.css / https://codepen.io/argyleink/pen/KKvRORE
  メモ:
    - :where()は簡単に上書きできるように詳細度を低くするために使用しています。
*/
* {
  /* すべてのデフォルトのマージンを削除 */
  margin: 0;
  /* すべてのデフォルトのパディングを削除 */
  padding: 0;
  /* line-heightをemベースでcalc()で計算。font-sizeを小さくするとline-heightは大きくなり、font-sizeを大きくするとline-heightは小さくなります。参考: https://kittygiraudel.com/2020/05/18/using-calc-to-figure-out-optimal-line-height/ */
  line-height: calc(0.25rem + 1em + 0.25rem);
}

/* より直感的なボックスサイズのモデルを使用 */
*,
::before,
::after {
  box-sizing: border-box;
}

/* fieldset, progress, meter以外のすべての要素でボーダーを削除し、背景に適切なデフォルトを設定 */
*:where(:not(fieldset, progress, meter)) {
  border-width: 0;
  border-style: solid;
  background-origin: border-box;
  background-repeat: no-repeat;
}

html {
  /* アプリケーションでパーセントによる高さを許可する  */
  block-size: 100%;
  /* テキストのサイズはfont-sizeのみで制御されるようにする */
  -webkit-text-size-adjust: none;
}

/* 減速を好まないユーザーのためにスムーズなスクロールを実現 */
body {
  /* テキストのレンダリングを改善 */
  -webkit-font-smoothing: antialiased;
  /* https://marco.org/2012/11/15/text-rendering-optimize-legibility */
  text-rendering: optimizeSpeed;
  /* アプリケーションでパーセントによる高さを許可する */
  min-block-size: 100%;
  /* https://developer.mozilla.org/en-US/docs/Web/CSS/scrollbar-gutter#example_2 */
  /* scrollbar-gutter: stable both-edges; バグが修正されるまで削除: https://bugs.chromium.org/p/chromium/issues/detail?id=1318404#c2 */
}

/* 各メディア要素のデフォルトを改善 */
:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, svg, video) {
  block-size: auto;
  max-inline-size: 100%;
}

/* ストロークを削除し、fillの塗りつぶしカラーはフォントカラーを継承 */
:where(svg) {
  stroke: none;
  fill: currentColor;
}

/* fill属性のないSVG */
:where(svg):where(:not([fill])) {
  /* fillを取り除き、ストロークのカラーはフォントカラーを継承 */
  stroke: currentColor;
  fill: none;
  /* 丸みを帯びたストローク */
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* width属性のないSVGのサイズを設定 */
:where(svg):where(:not([width])) {
  inline-size: 5rem;
}

/* フォーム内のタイポグラフィのスタイルを削除 */
:where(input, button, textarea, select),
:where(input[type=file])::-webkit-file-upload-button {
  color: inherit;
  font: inherit;
  font-size: inherit;
  letter-spacing: inherit;
}

/* textareaのサイズ変更は垂直のみにし、ブラウザがサポートしている場合にのみblockにします */
:where(textarea) {
  resize: vertical;
}

@supports (resize: block) {
  :where(textarea) {
    resize: block;
  }
}
/* テキストのオーバーフローを回避 */
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

/* article、aside、nav、section内のh1フォントサイズを修正 */
h1 {
  font-size: 2em;
}

/* リストの役割をするul、ol要素のリストスタイルを削除。デフォルトのスタイルが削除されることを示唆しています */
:where(ul, ol) {
  list-style: none;
}

/* クラスを持たないアンカータグに、より読みやすい下線スタイルを設定。アンカータグに設定することもできますが、コンフリクトを引き起こす可能性があります */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* インタラクティブな要素は適切なカーソルを設定して操作できることを明確にする */
:where(a[href], area, button, input, label[for], select, summary, textarea, [tabindex]:not([tabindex*="-"])) {
  cursor: pointer;
  touch-action: manipulation;
}

:where(input[type=file]) {
  cursor: auto;
}

:where(input[type=file])::-webkit-file-upload-button {
  cursor: pointer;
}

:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  cursor: pointer;
}

/* フォーカスのアウトラインをアニメーション化 */
:where(:not(:active)):focus-visible {
  outline-offset: 5px;
}

/* ユーザーがボタンのテキストを選択できないようにする */
:where(input[type=file])::-webkit-file-upload-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
          user-select: none;
  text-align: center;
}
:where(button, button[type], input[type=button], input[type=submit], input[type=reset]),
:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
          user-select: none;
  text-align: center;
}

/* 無効化されたボタンには無効化されたカーソルを表示 */
:where(button, button[type], input[type=button], input[type=submit], input[type=reset])[disabled] {
  cursor: not-allowed;
}

.is-pc {
  display: block;
}

.is-sp {
  display: none;
}

.is-sp-s {
  display: none;
}

[data-anim-elm] {
  opacity: 0;
}

[v-cloak] {
  display: none;
}

:where(a) {
  color: inherit;
}
:where(a):visited {
  color: inherit;
}
:where(a):link {
  color: inherit;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", Helvetica, Arial, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", 游ゴシック, "Yu Gothic ", YuGothic, Osaka, メイリオ, Meiryo, "MS Pゴシック", "MS P Gothic", sans-serif;
  background: #fff;
}

*:focus {
  outline: none;
}

a {
  text-decoration: none;
}

.c-breadcrumb {
  margin-top: 20px;
  overflow: auto;
}
.c-breadcrumb__inner {
  display: flex;
}
.c-breadcrumb__item {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #888888;
  white-space: nowrap;
}
.c-breadcrumb__item:last-child {
  pointer-events: none;
  color: #000000;
}
.c-breadcrumb__item + .c-breadcrumb__item {
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.c-breadcrumb__item + .c-breadcrumb__item::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-top: 1px solid #888888;
  border-right: 1px solid #888888;
  margin-right: 20px;
}
.c-breadcrumb__item a {
  text-decoration: none;
}

.c-btn {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #003289;
  text-decoration: none;
  width: 100%;
}
.c-btn a {
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
  padding-right: 32px;
  text-decoration: none;
}
.c-btn a::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: url("/assets/img/common/ico_btn_arrow.svg") center center no-repeat;
  background-size: contain;
  top: 30%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  transition: background 0.2s;
}
.c-btn a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  bottom: 2px;
  background: #003289;
}
.c-btn--center {
  text-align: center;
}
.c-btn--large {
  font-size: 20px;
}
.c-btn--large a {
  padding-bottom: 26px;
}
.c-btn--large a::before {
  width: 28px;
  height: 28px;
  right: -6px;
}
.c-btn__category {
  display: inline-block;
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  background: linear-gradient(105.67deg, #063A77 18.64%, #7344D5 123.93%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border-radius: 50px;
  padding: 7px 28px 6px;
  border: 1px solid #063A77;
  transition: background 0.2s, color 0.2s;
}
.c-btn__category--color {
  background: linear-gradient(105.67deg, #063A77 18.64%, #7344D5 123.93%);
  color: #fff;
  -webkit-background-clip: none;
  -webkit-text-fill-color: initial;
  background-clip: none;
}
.c-btn__category.is-current {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  background: linear-gradient(105.67deg, #063A77 18.64%, #7344D5 123.93%);
  -webkit-background-clip: border-box;
  -webkit-text-fill-color: currentcolor;
  background-clip: border-box;
  text-decoration: none;
  color: #FFFFFF;
  border: none;
}
.c-card__inner {
  display: block;
  width: 100%;
  text-decoration: none;
}
.c-card__img {
  width: 100%;
  overflow: hidden;
  border-radius: 3px;
}
.c-card__img img {
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  width: 100%;
  border-radius: 6px;
  aspect-ratio: 373/250;
}
.c-card__middle {
  margin-top: 15px;
  display: flex;
}
.c-card__day {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 2;
  color: #7796BA;
}
.c-card__category {
  display: flex;
  align-items: center;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 2;
  text-align: center;
  text-transform: capitalize;
  color: #7796BA;
  margin-left: 16px;
}
.c-card__category::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 13px;
  background: #DCDCDC;
  margin-right: 16px;
}
.c-card__title {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.45;
  letter-spacing: 0.03em;
  color: #003289;
  margin-top: 8px;
  transition: opacity 0.2s;
}
.c-card__title--news {
  font-size: 15px;
  line-height: 1.8;
  color: #222222;
}
.c-card__tag {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.c-card__text {
  font-weight: 500;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.03em;
  color: #222222;
  margin-top: 5px;
  transition: opacity 0.2s;
}
.c-form {
  width: 100%;
}
.c-form .mw_wp_form {
  padding-top: 110px;
  margin-top: -110px;
}
.c-form .mw_wp_form .error {
  margin-top: 5px;
}
.c-form__note {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.6;
  color: #ffffff;
  margin-left: -5px;
}
.c-form .c-form_require {
  font-weight: 500;
  line-height: 1.6;
  color: #ffffff;
  vertical-align: super;
  font-size: 10px;
  margin: 0 5px;
}
.c-form .c-form_item {
  display: flex;
  padding: 28px 0 40px;
}
.c-form .c-form_item + .c-form_item {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 40px 0;
}
.c-form .c-form_item__title {
  flex-shrink: 0;
  width: 222px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
}
.c-form .c-form_item__main {
  width: 100%;
}
.c-form .c-form_item__main .c-form_item_input input,
.c-form .c-form_item__main .c-form_item_input textarea {
  width: 100%;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: #222222;
  background: #ffffff;
  border-radius: 3px;
  padding: 5px 16px 7px;
  vertical-align: bottom;
}
.c-form .c-form_item__main .c-form_item_input input::-webkit-input-placeholder, .c-form .c-form_item__main .c-form_item_input textarea::-webkit-input-placeholder {
  color: #b4b4b4;
}
.c-form .c-form_item__main .c-form_item_input input::placeholder,
.c-form .c-form_item__main .c-form_item_input textarea::placeholder {
  color: #b4b4b4;
}
.c-form .c-form_item__main .c-form_submit {
  margin-top: 42px;
}
.c-form .c-form_item__main .c-form_submit input {
  -webkit-appearance: none;
          appearance: none;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.1em;
  color: #ffffff;
  width: 100%;
  background: #1eb18e;
  border-radius: 50px;
  padding: 17px 0 18px;
  transition: 0.2s background;
}

.c-pagination {
  margin-top: 144px;
}
.c-pagination .wp-pagenavi {
  display: flex;
  justify-content: center;
}
.c-pagination .wp-pagenavi a, .c-pagination .wp-pagenavi .current {
  width: 28px;
  text-align: center;
  font-family: "Inter";
  margin: 0 10px;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 2;
  color: #222222;
  text-decoration: none;
}
.c-pagination .wp-pagenavi a.previouspostslink, .c-pagination .wp-pagenavi a.nextpostslink, .c-pagination .wp-pagenavi .current.previouspostslink, .c-pagination .wp-pagenavi .current.nextpostslink {
  position: relative;
  width: 29px;
  height: 16px;
  display: inline-block;
  border: none;
  padding: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  margin-left: 50px;
  margin-top: 11px;
}
.c-pagination .wp-pagenavi a.previouspostslink::after, .c-pagination .wp-pagenavi a.nextpostslink::after, .c-pagination .wp-pagenavi .current.previouspostslink::after, .c-pagination .wp-pagenavi .current.nextpostslink::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  background: url(/assets/img/common/icon_arrow.svg) no-repeat center center/contain;
}
.c-pagination .wp-pagenavi a.previouspostslink, .c-pagination .wp-pagenavi .current.previouspostslink {
  margin-right: 50px;
  margin-left: 0;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.c-pagination .wp-pagenavi .current {
  color: #5A4DBB;
  padding-bottom: 8px;
  border-bottom: 1px solid #5A4DBB;
}
.c-pagination .wp-pagenavi .extend {
  margin: 0 10px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 14px;
}

.c-subpage_mainvisual {
  position: relative;
  height: 452px;
}
.c-subpage_mainvisual__img {
  width: 100%;
  height: 100%;
}
.c-subpage_mainvisual__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-subpage_mainvisual__inner {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  padding: 0 20px;
}
.c-subpage_mainvisual__main {
  max-width: 1366px;
  margin: auto;
}
.c-subpage_mainvisual__title {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-size: 68px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  color: #ffffff;
  margin-top: 202px;
}
.c-subpage_mainvisual__text {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: #ffffff;
  margin-top: 6px;
}

.p-category {
  display: flex;
  margin-top: 100px;
}
.p-category__title {
  display: flex;
  align-items: center;
  align-self: flex-start;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  color: #5A4DBB;
  margin-right: 24px;
}
.p-category__title::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 17px;
  margin-left: 24px;
  background: #5A4DBB;
}
.p-category__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.p-contact {
  background: url(/assets/img/contact/bg_contact.jpg) no-repeat center center/cover;
  padding: 120px 20px 144px;
}
.p-contact__inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 32px 20px;
}
.p-contact__inner .p-contact_left {
  max-width: 419px;
  width: 100%;
}
.p-contact__inner .p-contact_right {
  max-width: 668px;
  width: 100%;
  margin-top: 60px;
}
.p-contact .mw_wp_form .error {
  display: block;
  background: #ff0000;
  border-radius: 2px;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 160%;
  text-align: justify;
  color: #ffffff;
  padding: 3px 10px;
}
.p-contact .mw_wp_form .c-form_item_input:has(.error) input {
  background: #ffdede;
  border: 1px solid #ff0000;
  border-radius: 3px;
}
.p-contact .mw_wp_form .c-form_item_input:has(.error) textarea {
  background: #ffdede;
  border: 1px solid #ff0000;
  border-radius: 3px;
}
.p-contact .mw_wp_form.mw_wp_form_preview {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  text-align: justify;
  color: #ffffff;
}
.p-contact .mw_wp_form.mw_wp_form_complete .p-head__lead {
  font-size: 20px;
}

.p-head {
  min-width: 185px;
}
.p-head--flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  -webkit-column-gap: 20px;
          column-gap: 20px;
}
.p-head__box--center {
  text-align: center;
}
.p-head__box--nowrap {
  white-space: nowrap;
}
.p-head__box + .c-btn {
  margin-top: 50px;
}
.p-head__label {
  font-family: "Inter";
  text-transform: uppercase;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: -0.03em;
  display: inline-block;
  background: linear-gradient(105.67deg, #063A77 18.64%, #7344D5 123.93%);
  background: -webkit-linear-gradient(105.67deg, #063A77 18.64%, #7344D5 123.93%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.p-head__label--white {
  background: none;
  color: #fff;
  -webkit-text-fill-color: initial;
}
.p-head__title {
  font-weight: 700;
  font-size: 46px;
  color: #003289;
  line-height: 1.5;
}
.p-head__title--white {
  color: #fff;
  -webkit-text-fill-color: initial;
}
.p-head__title span {
  font-family: "Roboto";
}
.p-head__sub_title {
  font-weight: 500;
  font-size: 38px;
  letter-spacing: -0.01em;
  display: inline-block;
  text-transform: capitalize;
  background: linear-gradient(105.67deg, #063A77 18.64%, #7344D5 123.93%);
  background: -webkit-linear-gradient(105.67deg, #063A77 18.64%, #7344D5 123.93%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 18px;
  font-family: "Roboto";
}
.p-head__sub_title--white {
  background: none;
  color: #fff;
  -webkit-text-fill-color: initial;
}
.p-head__sub_title + .p-head__lead {
  margin-top: 40px;
}
.p-head__lead {
  font-weight: 500;
  font-size: 16px;
  line-height: 2;
  text-align: justify;
  letter-spacing: 0.03em;
  color: #222222;
  max-width: 702px;
  width: 100%;
}
.p-head__lead--white {
  color: #fff;
}

.p-list {
  padding: 0 20px;
}
.p-list__inner {
  max-width: 1200px;
  margin: auto;
}
.p-list__main {
  display: grid;
  flex-wrap: wrap;
  gap: 88px 4.75%;
  margin-top: 64px;
  grid-template-columns: repeat(3, 1fr);
}
.p-list__main--narrow_gap {
  gap: 64px 40px;
}

.p-products {
  margin-top: 141px;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
}
.p-products::before {
  content: "";
  height: 100%;
  width: 90%;
  position: absolute;
  right: 0;
  top: 0;
  background: #fff;
  border-radius: 8px;
  z-index: -1;
}
.p-products + .p-products {
  margin-top: 165px;
}
.p-products__bg_text {
  font-weight: 500;
  font-size: 220px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.18);
  position: absolute;
  top: -150px;
  right: -220px;
  z-index: -1;
}
.p-products--reverse {
  flex-direction: row-reverse;
}
.p-products--reverse::before {
  content: "";
  left: 0;
}
.p-products--reverse .p-products__bg_text {
  right: auto;
  left: -220px;
}
.p-products__img {
  max-width: 580px;
  width: 100%;
  margin-top: -150px;
  z-index: 2;
  position: relative;
}
.p-products__img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 20px;
  left: 20px;
  background: var(--main-color);
  border-radius: 8px;
  z-index: -1;
}
.p-products__img img {
  width: 100%;
}
.p-products__texts {
  max-width: 490px;
  width: 100%;
  padding: 48px 37px 55px 74px;
  box-sizing: initial;
}
.p-products__label {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: #003289;
  font-family: "Inter";
  text-transform: uppercase;
}
.p-products__title {
  font-weight: 500;
  font-size: 40px;
  letter-spacing: 0.02em;
  color: #222222;
  margin-top: 10px;
  display: flex;
  font-family: "Roboto";
  align-items: center;
  -webkit-column-gap: 20px;
          column-gap: 20px;
  position: relative;
}
.p-products__title::before {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 127px;
  height: 2px;
}
.p-products__title::before {
  background: var(--main-color);
}
.p-products__title_img {
  max-width: 131px;
  width: 100%;
}
.p-products__title_img--large {
  max-width: 167px;
}
.p-products__text {
  margin-top: 62px;
  font-weight: 500;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.03em;
  color: #222222;
  text-align: justify;
}
.p-products__btn {
  font-family: "Inter";
  text-decoration: none;
  position: relative;
  padding: 11px 50px 12px 32px;
  border-radius: 50px;
  font-weight: 700;
  color: #fff;
  display: block;
  max-width: 100%;
  width: 178px;
  text-align: center;
  margin-top: 28px;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: 0.2s;
  background: var(--main-color);
  border: 1px solid var(--main-color);
}
.p-products__btn svg {
  fill: #fff;
  background: transparent;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 30px;
  width: 14px;
  height: 14px;
  transition: fill 0.2s;
}
.p-products__btn svg g {
  color: transparent;
}
.p-products__btn:hover {
  color: var(--main-color);
  background: #fff;
}
.p-products__btn:hover svg {
  fill: var(--main-color);
}

.p-superiority_card {
  display: flex;
  -webkit-column-gap: 40px;
          column-gap: 40px;
  margin-top: 15px;
}
.p-superiority_card__item {
  flex: 1 1 288px;
  padding: 28px 20px 22px;
  background: #FFFFFF;
  border: 1px solid #E2E2E2;
  border-radius: 6px;
  position: relative;
}
.p-superiority_card__item--arrow::before {
  content: "";
  background: url("/assets/img/common/ico_bottom_arrow.svg") center center no-repeat;
  background-size: contain;
  height: 33px;
  width: 16px;
  position: absolute;
  top: 52%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-superiority_card__item--line::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -60px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 78px;
  height: 1px;
  background: #a7a7a7;
}
.p-superiority_card__item_img {
  margin: auto;
}
.p-superiority_card__text {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.8;
  text-align: center;
  letter-spacing: 0.06em;
  color: #222222;
  margin-top: 24px;
}
.p-superiority_card__text + img {
  margin-top: 40px;
}
.p-superiority_card__text--mt_narrow {
  margin-top: 0;
}

.p-superiority_detail {
  max-width: 489px;
  width: 100%;
}
.p-superiority_detail__lead {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: #003289;
}
.p-superiority_detail__bubble {
  margin-top: 15px;
  padding: 21px 12px 12px;
  border: 1px solid #063a77;
  border-radius: 6px;
  position: relative;
}
.p-superiority_detail__bubble::before, .p-superiority_detail__bubble::after {
  content: "";
  position: absolute;
  top: 51%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-superiority_detail__bubble::before {
  border: 11px solid transparent;
  border-right: 20px solid #fff;
  z-index: 1;
  left: -30px;
}
.p-superiority_detail__bubble::after {
  border: 12px solid transparent;
  border-right: 21px solid #063a77;
  left: -33px;
}
.p-superiority_detail__head {
  display: flex;
  -webkit-column-gap: 33px;
          column-gap: 33px;
  align-items: center;
  justify-content: center;
}
.p-superiority_detail__title {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0.06em;
  color: #222222;
}
.p-superiority_detail__title span {
  color: #1EB18E;
  padding-bottom: 3px;
  border-bottom: 1px solid #1EB18E;
}
.p-superiority_detail__img {
  max-width: 161px;
  width: 100%;
}
.p-superiority_detail__img img {
  width: 100%;
}
.p-superiority_detail__foot {
  margin-top: 28px;
  text-align: center;
  background: #EDF1F7;
  padding: 19px 25px 19px;
}
.p-superiority_detail__text {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: #222222;
}
.p-superiority_detail__main_text {
  display: inline-block;
  font-size: 22px;
  font-weight: 700;
}
.p-superiority_detail__main_text span.mb {
  line-height: 1.8;
  margin-bottom: 10px;
  display: inline-block;
}
.p-superiority_detail__main_text span.gradient {
  -webkit-box-decoration-break: clone;
  background-image: linear-gradient(105.67deg, #063A77 18.64%, #7344D5 123.93%);
  padding: 2px 10px;
  color: #FFF;
  font-size: 30px;
  line-height: 1.5;
}
.p-superiority_detail__main_text img {
  width: 100%;
}
.p-superiority_detail__main_text + .p-superiority_detail__text {
  margin-top: 13px;
}

.p-superiority_foot {
  display: flex;
  -webkit-column-gap: 43px;
          column-gap: 43px;
  justify-content: center;
  margin-top: 40px;
  align-items: flex-start;
}
.p-superiority_foot__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.1em;
  padding-left: 1em;
  text-indent: -1em;
  color: #222222;
}
.p-superiority_foot__lead {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  color: #222222;
  margin-top: 17px;
}
.p-superiority_foot__lead span {
  color: #003289;
  border-bottom: 1px solid #003289;
  display: inline-block;
  padding-bottom: 6px;
}
.p-superiority_foot__img {
  max-width: 158px;
  width: 100%;
  flex-shrink: 2;
}
.p-superiority_foot__img img {
  width: 100%;
}

.u-mt35 {
  margin-top: 35px;
}

.u-mt16_pc {
  margin-top: 16px;
}

.u-mt25_pc {
  margin-top: 25px;
}

.u-mt28_pc {
  margin-top: 28px;
}

.u-mt37_pc {
  margin-top: 37px;
}

.u-mt73_pc {
  margin-top: 73px;
}

.footer_block {
  background: #05264D;
}
.footer_block__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  width: 100%;
  margin: auto;
  padding: 30px 20px;
}
.footer_block .footer_copyright {
  font-family: "Inter";
  font-weight: 400;
  font-size: 12px;
  text-align: center;
  color: #FFFFFF;
}
.footer_block .footer_privacy {
  font-weight: 400;
  font-size: 12px;
  color: #FFFFFF;
  text-decoration: none;
  transition: opacity 0.2s;
}
.footer_block .footer_sns {
  display: flex;
  align-items: center;
  -webkit-column-gap: 20px;
          column-gap: 20px;
}
.footer_block .footer_sns__item {
  transition: opacity 0.2s;
}
.footer_block .footer_sns__item img {
  width: 100%;
}

.header_block {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 13;
}
.header_block__inner {
  justify-content: space-between;
  display: flex;
  align-items: center;
  padding: 20px 30px 20px 42px;
  -webkit-column-gap: 20px;
          column-gap: 20px;
}
.header_block__logo {
  width: 132px;
  transition: opacity 0.2s;
}
.header_block__logo img {
  width: 100%;
}
.header_block__list {
  display: flex;
  background: #fff;
  border-radius: 50px;
  -webkit-column-gap: calc(39 / 1728 * 100vw);
          column-gap: calc(39 / 1728 * 100vw);
  padding: 17px 19px 15px 43px;
  align-items: center;
}
.header_block__item {
  font-weight: 700;
  font-size: calc(15 / 1728 * 100vw);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #063A77;
  transition: opacity 0.2s;
}
.header_block__item--btn {
  color: #fff;
  border: 1px solid #183973;
  transition: background 0.2s, color 0.2s;
  border-radius: 50px;
  background: #183973;
  font-size: calc(14 / 1728 * 100vw);
}
.header_block__item--btn a {
  padding: 9px 32px 11px;
  display: inline-block;
}
.header_block__item a {
  text-decoration: none;
}
.header_block .hamburger_icon {
  background: #fff;
  width: 57px;
  height: 57px;
  padding: 16px 12px;
  box-sizing: border-box;
  cursor: pointer;
  z-index: 13;
}
.header_block .hamburger_icon span {
  display: block;
  width: 28px;
  height: 2px;
  background: #183973;
  margin: auto;
  margin-bottom: 7px;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  border-radius: 50px;
}
.header_block .hamburger_icon span:nth-of-type(3) {
  margin-bottom: 0;
}
.header_block .hamburger_icon span.is-active {
  background: #fff;
}
.header_block .hamburger_icon span.is-active:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
          transform: translateY(10px) rotate(-315deg);
}
.header_block .hamburger_icon span.is-active:nth-of-type(2) {
  width: 25px;
  opacity: 0;
}
.header_block .hamburger_icon span.is-active:nth-of-type(3) {
  -webkit-transform: translateY(-8px) rotate(315deg);
          transform: translateY(-8px) rotate(315deg);
}
.header_block .hamburger_icon__text::before {
  content: "Menu";
  font-weight: 700;
  font-size: 12px;
  text-align: center;
  letter-spacing: 0.02em;
  color: #FB9D10;
}
.header_block .hamburger_icon__text.is-active::before {
  content: "Close";
}
.header_recruit_block .header_block_list {
  background: #E8FFFE;
}
.header_recruit_block .header_block__item {
  line-height: 2;
  letter-spacing: -0.7px;
  transition: background 0.2s;
  white-space: nowrap;
  padding: 0;
  transition: opacity 0.2s;
}
.header_recruit_block .header_block__item a {
  padding: 3.3125rem 1.875rem 1.875rem;
}

.hamburger_icon {
  background: #fff;
  width: 57px;
  height: 57px;
  padding: 16px 12px;
  box-sizing: border-box;
  cursor: pointer;
  z-index: 13;
}
.hamburger_icon span {
  display: block;
  width: 25px;
  height: 2px;
  background: #183973;
  margin: auto;
  margin-bottom: 7px;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  border-radius: 50px;
}
.hamburger_icon span:nth-of-type(3) {
  margin-bottom: 0;
}
.hamburger_icon span.is-active:nth-of-type(1) {
  -webkit-transform: translateY(6px) rotate(-315deg);
          transform: translateY(6px) rotate(-315deg);
}
.hamburger_icon span.is-active:nth-of-type(2) {
  width: 25px;
  opacity: 0;
}
.hamburger_icon span.is-active:nth-of-type(3) {
  -webkit-transform: translateY(-6px) rotate(315deg);
          transform: translateY(-6px) rotate(315deg);
}

.hamburger_modal {
  opacity: 0;
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  height: 100lvh;
  background: linear-gradient(133.35deg, #063A77 16.1%, #7344D5 95.15%);
  padding: 66px 30px 80px;
  box-sizing: border-box;
  z-index: 12;
  overflow: scroll;
}
.hamburger_modal__logo {
  width: 102px;
  margin: auto;
  margin-bottom: 41px;
}
.hamburger_modal__logo img {
  width: 100%;
}
.hamburger_modal__list {
  margin-top: calc(35 / 375 * 100vw);
}
.hamburger_modal__item {
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  font-size: 16px;
  letter-spacing: 2px;
  text-align: left;
}
.hamburger_modal__item + .hamburger_modal__item {
  margin-top: calc(30 / 375 * 100vw);
}
.hamburger_modal__item img {
  width: 16px;
  vertical-align: sub;
}
.hamburger_modal__item a {
  transition: opacity 0.2s;
  text-decoration: none;
}
.hamburger_modal__item a img {
  display: inline-block;
  margin-left: 12px;
}
.hamburger_modal__item--btn {
  background: #fff;
  border-radius: 50px;
}
.hamburger_modal__item--btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: calc(32 / 375 * 100vw);
  height: calc(32 / 375 * 100vw);
  background: url(/assets/img/common/ico_arrow_purple.svg) center center no-repeat;
  background-size: contain;
}
.hamburger_modal__item--btn a {
  margin-top: calc(55 / 375 * 100vw);
  padding: calc(14 / 375 * 100vw) calc(20 / 375 * 100vw) calc(16 / 375 * 100vw);
  display: block;
  letter-spacing: 0.05em;
  background: linear-gradient(105.67deg, #063A77 18.64%, #7344D5 123.93%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-align: center;
  font-weight: 700;
}
.hamburger_modal__title {
  position: relative;
  padding-bottom: 15px;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.hamburger_modal__title::before, .hamburger_modal__title::after {
  position: absolute;
  display: block;
  content: "";
  background: #ffffff;
  right: 0;
  top: 50%;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.hamburger_modal__title::before {
  width: 17px;
  height: 1px;
  top: 31%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.hamburger_modal__title::after {
  width: 17px;
  height: 1px;
  top: 31%;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.hamburger_modal__item_toggle {
  margin-bottom: 16px;
}
.hamburger_modal__item_toggle .hamburger_modal__title.is-open::after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.hamburger_modal__auth_btn {
  display: inline-block;
}
.hamburger_modal__auth_btn a {
  font-weight: 400;
  font-size: 20px;
  border: 1px solid #fff;
  padding: 15px 28px 17px;
  color: #fff;
  display: block;
  transition: opacity 0.2s;
}
.hamburger_modal__auth_btn img {
  width: 20px;
  height: 20px;
  margin-right: 4px;
}
.hamburger_modal__links {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.hamburger_modal__icon {
  width: 36px;
  transition: opacity 0.2s;
}
.hamburger_modal__icon img {
  width: 100%;
}
.hamburger_modal a.hamburger_modal__link {
  display: block;
  background: #ffffff;
  border-radius: 5px;
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  text-align: center;
  letter-spacing: 0.05em;
  color: #004097;
  padding: 12px 20px;
  text-decoration: none;
  color: #004097;
}
.hamburger_modal a.hamburger_modal__link + .hamburger_modal__link {
  margin-top: 16px;
}
.hamburger_modal a.hamburger_modal__link--contact {
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.1em;
  color: #ffffff;
  background: #f38f19;
  border-radius: 5px;
}
.hamburger_modal .hamburger_modal_toggle_menu {
  display: none;
  margin-bottom: 33px;
}
.hamburger_modal .hamburger_modal_toggle_menu__item {
  position: relative;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin-bottom: 14px;
  padding-left: 20px;
}
.hamburger_modal .hamburger_modal_toggle_menu__item::before {
  content: "";
  position: absolute;
  display: block;
  border-top: 1px solid #009b94;
  width: 10px;
  height: 1px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.hamburger_modal_sns {
  width: calc(148 / 375 * 100vw);
  display: flex;
  margin: auto;
  -webkit-column-gap: calc(28 / 375 * 100vw);
          column-gap: calc(28 / 375 * 100vw);
  margin-top: calc(56 / 375 * 100vw);
}
.hamburger_modal_sns__item {
  width: calc(30 / 375 * 100vw);
}
.hamburger_modal_sns__item--twitter {
  width: calc(32 / 375 * 100vw);
}
.hamburger_modal_sns__item img {
  width: 100%;
}

.l-service {
  background: url("/assets/img/top/bg_feature_img02.jpg") center center no-repeat;
  background-size: cover;
  border-radius: 16px;
  padding: 64px 20px 81px;
}
.l-service--pb0 {
  padding: 64px 20px 0px;
}
.l-service__title {
  text-align: center;
  margin-top: 8px;
  color: #fff;
}
.l-service__title span {
  font-weight: 700;
  font-size: 50px;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  color: #FFFFFF;
  display: inline;
  border-bottom: 1px solid #fff;
  padding-bottom: 6px;
  font-family: "Roboto";
  line-height: 1.5;
}
.l-service__sub_title {
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  color: #FFFFFF;
  text-align: center;
}

.l-superiority {
  background: #fff;
  padding: 51px 0 78px;
  margin-top: 98px;
  position: relative;
  border-radius: 8px;
}
.l-superiority::before {
  content: "";
  position: absolute;
  top: -37px;
  right: 60px;
}
.l-superiority:nth-of-type(1)::before {
  background: url("/assets/img/top/txt_superiority_label01.svg") center center no-repeat;
  background-size: contain;
  width: 118px;
  height: 120px;
}
.l-superiority:nth-of-type(2)::before {
  background: url("/assets/img/top/txt_superiority_label02.svg") center center no-repeat;
  background-size: contain;
  width: 138px;
  height: 120px;
}
.l-superiority + .l-superiority {
  margin-top: 129px;
}
.l-superiority__title {
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  color: #222222;
  position: relative;
  padding-left: 39px;
  padding-right: 200px;
}
.l-superiority__title::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 19px;
  height: 71px;
  background: linear-gradient(41.77deg, #063A77 1.7%, #7344D5 90.24%);
}
.l-superiority__title span {
  color: #1EB18E;
}
.l-superiority__head {
  background: url("/assets/img/common/bg_particle_dark.jpg") center center no-repeat;
  background-size: cover;
  padding: 40px 68px 38px;
  margin: 53px 80px 0 40px;
  position: relative;
  border-radius: 8px;
}
.l-superiority__head::before, .l-superiority__head::after {
  content: "";
  position: absolute;
  left: 49%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 21px;
  height: 21px;
  border-right: 4px solid #003289;
  border-bottom: 4px solid #003289;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.l-superiority__head:before {
  bottom: -36px;
}
.l-superiority__head::after {
  bottom: -59px;
}
.l-superiority__lead {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: #222222;
}
.l-superiority__foot {
  margin-top: 85px;
  display: flex;
  -webkit-column-gap: 42px;
          column-gap: 42px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 80px 0 65px;
}

.cases_detail_page .cases_detail_block__inner {
  max-width: 1240px;
  width: 100%;
  margin: auto;
  padding: 0 20px;
}
.cases_detail_page .detail_case01 {
  margin: 100px 0 120px;
  padding: 68px 20px 116px;
  background: #F2F6FE;
  border-radius: 6px;
}
.cases_detail_page .detail_case01__label {
  font-family: "Inter";
  font-weight: 600;
  font-size: 30px;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  background: linear-gradient(105.67deg, #063A77 18.64%, #7344D5 123.93%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  padding-bottom: 4px;
  border-bottom: 1px solid #063A77;
  -o-border-image: linear-gradient(to right, #063A77 0%, #7344D5 100%);
     border-image: linear-gradient(to right, #063A77 0%, #7344D5 100%);
  border-image-slice: 1;
  width: 130px;
  margin: auto;
  text-align: center;
}
.cases_detail_page .detail_case01__title {
  font-weight: 700;
  font-size: 30px;
  line-height: 1.5;
  text-align: center;
  color: #222222;
  margin-top: 35px;
}
.cases_detail_page .detail_case01__client {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 500;
  text-align: center;
  margin-top: 35px;
}
.cases_detail_page .detail_case01__client span {
  vertical-align: middle;
  font-family: "Roboto";
  margin-right: 8px;
  font-size: 16px;
  text-transform: capitalize;
  background: linear-gradient(105.67deg, #063A77 18.64%, #7344D5 123.93%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.cases_detail_page .detail_case01__img {
  margin: auto;
  margin-top: 61px;
  height: 443px;
  position: relative;
  max-width: 832px;
  width: 100%;
  z-index: 1;
}
.cases_detail_page .detail_case01__img::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 24px;
  width: 100%;
  height: 100%;
  background: linear-gradient(116.74deg, #23DAAE 3%, #9AB5FC 102.09%);
  border-radius: 5px;
  z-index: -1;
}
.cases_detail_page .detail_case01__img img {
  border-radius: 12px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.cases_detail_page .detail_problem {
  max-width: 1016px;
  margin: auto;
  margin-top: 107px;
  padding: 8px;
  position: relative;
  border-radius: 6px;
  border: 1px solid #003289;
}
.cases_detail_page .detail_problem::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 35px;
  background: #F2F6FE;
  width: 81px;
  height: 5px;
}
.cases_detail_page .detail_problem__title {
  position: absolute;
  top: -57px;
  left: 46px;
  font-weight: 700;
  color: #003289;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-align: center;
  z-index: 2;
}
.cases_detail_page .detail_problem__title span {
  font-family: "Roboto";
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0;
}
.cases_detail_page .detail_problem__inner {
  background: #fff;
  display: flex;
  align-items: center;
  border-radius: 8px;
  position: relative;
}
.cases_detail_page .detail_problem__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: #222222;
  padding: 35px 210px 27px 63px;
  z-index: 1;
}
.cases_detail_page .detail_problem__img {
  position: absolute;
  bottom: 0;
  right: 61px;
}
.cases_detail_page .detail_problem__img img {
  width: 100%;
}
.cases_detail_page .detail_contents {
  background: url("/assets/img/cases/detail/bg_cases_detail01.jpg") center center no-repeat;
  background-size: cover;
  padding: 73px 0 132px;
}
.cases_detail_page .detail_contents__wrapper {
  padding: 0 20px;
  margin: auto;
  max-width: 1240px;
  width: 100%;
}
.cases_detail_page .detail_contents__wrapper + .detail_contents__wrapper {
  margin-top: 74px;
}
.cases_detail_page .detail_contents__title {
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  background: linear-gradient(105.67deg, #063A77 18.64%, #7344D5 123.93%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  padding-left: 40px;
  position: relative;
  display: inline-block;
}
.cases_detail_page .detail_contents__title + .detail_contents__text {
  margin-top: 36px;
}
.cases_detail_page .detail_contents__title span {
  font-family: "Roboto";
  font-size: 16px;
}
.cases_detail_page .detail_contents__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 64%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: linear-gradient(41.77deg, #063A77 1.7%, #7344D5 90.24%);
  width: 13px;
  height: 71px;
}
.cases_detail_page .detail_contents__text {
  padding: 20px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #222222;
  background: #fff;
}
.cases_detail_page .detail_contents__text strong {
  color: #003289;
}
.cases_detail_page .detail_contents__text img {
  margin: 20px auto 20px;
}
.cases_detail_page .detail_contents__img {
  margin-top: 32px;
}
.cases_detail_page .detail_contents__img img {
  width: 100%;
}
.cases_detail_page .detail_result_banner {
  margin-top: 37px;
  background: linear-gradient(99.1deg, #F4F3FD 12.01%, #D2DEFF 97.66%);
  border-radius: 8px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.cases_detail_page .detail_result_banner__list {
  padding: 57px 0 47px 68px;
  align-self: flex-start;
}
.cases_detail_page .detail_result_banner__item {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: #222222;
}
.cases_detail_page .detail_result_banner__item strong {
  font-weight: 700;
  font-size: 23px;
  line-height: 2;
  text-align: center;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  background: linear-gradient(105.67deg, #063A77 18.64%, #7344D5 123.93%);
  padding-left: 8px;
  padding-bottom: 3px;
}
.cases_detail_page .detail_result_banner__item + .detail_result_banner__item {
  margin-top: 20px;
}
.cases_detail_page .detail_result_banner__item img {
  margin: 10px auto;
}
.cases_detail_page .detail_result_banner__img {
  max-width: 120px;
  width: 100%;
  margin-right: 20px;
}
.cases_detail_page .detail_result_banner__img img {
  width: 100%;
}
.cases_detail_page .detail_other {
  background: url("/assets/img/cases/detail/bg_cases_detail02.jpg") center center no-repeat;
  background-size: cover;
}
.cases_detail_page .detail_other__inner {
  max-width: 1240px;
  width: 100%;
  margin: auto;
  padding: 117px 20px 176px;
}
.cases_detail_page .detail_other__title {
  font-family: "Roboto";
  font-weight: 500;
  font-size: 38px;
  background: linear-gradient(105.67deg, #063A77 18.64%, #7344D5 123.93%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  padding-bottom: 2px;
  border-bottom: 1px solid #063A77;
  -o-border-image: linear-gradient(to right, #063A77 0%, #7344D5 100%);
     border-image: linear-gradient(to right, #063A77 0%, #7344D5 100%);
  border-image-slice: 1;
  width: 210px;
}
.cases_detail_page .detail_other__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 64px;
}
.cases_detail_page .detail_other .detail_other_item {
  display: flex;
  border: 1px solid #003289;
  border-radius: 6px;
  padding: 6px;
}
.cases_detail_page .detail_other .detail_other_item__inner {
  align-items: center;
  padding: 23px;
  transition: background 0.2s;
  border-radius: 6px;
  background: #fff;
  flex-grow: 1;
}
.cases_detail_page .detail_other .detail_other_item__inner a {
  text-decoration: none;
}
.cases_detail_page .detail_other .detail_other_item__inner.is-current {
  background: rgba(90, 77, 187, 0.1);
}
.cases_detail_page .detail_other .detail_other_item__label {
  font-family: "Inter";
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.02em;
  background: linear-gradient(105.67deg, #063A77 18.64%, #7344D5 123.93%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  padding-bottom: 2px;
  border-bottom: 1px solid #063A77;
  -o-border-image: linear-gradient(to right, #063A77 0%, #7344D5 100%);
     border-image: linear-gradient(to right, #063A77 0%, #7344D5 100%);
  border-image-slice: 1;
  width: 105px;
  text-align: center;
  margin: auto;
}
.cases_detail_page .detail_other .detail_other_item__title {
  margin-top: 18px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: #222222;
  text-align: center;
}

.index_page .mainvisual_block__texts {
  position: absolute;
  z-index: 2;
  bottom: 44px;
  left: 56px;
}
.index_page .mainvisual_block__lead {
  font-family: "IBM Plex Sans";
  font-weight: 600;
  font-size: calc(24 / 1728 * 100vw);
  letter-spacing: 0.06em;
}
.index_page .mainvisual_block__lead--white {
  color: #ffffff;
}
.index_page .mainvisual_block__lead--blue {
  color: #183973;
}
.index_page .mainvisual_block__title {
  margin-top: 28px;
}
.index_page .mainvisual_block__title--wide {
  max-width: calc(1295 / 1728 * 100vw);
  width: 100%;
}
.index_page .mainvisual_block__title--narrow {
  max-width: calc(960 / 1728 * 100vw);
  width: 100%;
}
.index_page .mainvisual_block__title img {
  width: 100%;
}
.index_page .mainvisual_block__text {
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.6;
  text-align: justify;
  letter-spacing: -0.02em;
  margin-top: 20px;
}
.index_page .mainvisual_block__text--white {
  color: #ffffff;
}
.index_page .mainvisual_block__text--blue {
  color: #183973;
}
.index_page .mainvisual_block .swiper-slide {
  height: calc(880 / 1728 * 100vw);
  overflow: hidden;
  position: relative;
}
.index_page .mainvisual_block .swiper-slide > img,
.index_page .mainvisual_block .swiper-slide video {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 100%;
}
.index_page .news_block__inner {
  display: flex;
  align-items: center;
  max-width: 1240px;
  margin: auto;
  padding: 105px 20px 117px;
  -webkit-column-gap: 30px;
          column-gap: 30px;
  justify-content: space-between;
}
.index_page .news_block__list {
  max-width: 890px;
  width: 100%;
}
.index_page .news_block__list + .c-btn {
  margin-top: calc(42 / 375 * 100vw);
}
.index_page .news_block__item {
  padding: 18px 0;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.03em;
  color: #222222;
}
.index_page .news_block__item + .news_block__item {
  border-top: 1px solid #e9e9e9;
}
.index_page .news_block__item a {
  text-decoration: none;
  display: flex;
  -webkit-column-gap: 22px;
          column-gap: 22px;
  align-items: center;
  transition: color 0.2s;
}
.index_page .news_block__item time {
  font-family: "Inter";
  font-size: 14px;
  color: #7796ba;
}
.index_page .news_block .atpress_title_frame {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e9e9e9;
  padding: 18px 0;
}
.index_page .news_block .atpress_date_frame {
  display: flex;
  flex-direction: row-reverse;
  font-family: "Inter";
  font-weight: 500;
  letter-spacing: 0.03em;
  font-size: 14px;
  color: #7796ba;
}
.index_page .news_block .atpress_date_frame br {
  display: none;
}
.index_page .news_block .atpress_title {
  font-size: 15px;
  padding-left: 20px;
  transition: color 0.2s ease-in-out;
}
.index_page .about_block {
  background: #f2f2f2;
}
.index_page .about_block__inner {
  max-width: 1240px;
  margin: auto;
  padding: 131px 20px 100px;
}
.index_page .about_block__foot_text {
  margin-top: 84px;
  font-weight: 500;
  font-size: 38px;
  line-height: 180%;
  text-align: center;
  letter-spacing: 0.05em;
  color: #222222;
}
.index_page .about_block__foot_text span {
  font-family: "Roboto";
  font-weight: 700;
  font-size: 50px;
}
.index_page .about_block__foot_text span.bg {
  background: linear-gradient(transparent 70%, #b4beda 70%);
}
.index_page .about_block__foot_text span.gradient {
  background: linear-gradient(105.67deg, #063a77 18.64%, #7344d5 123.93%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.index_page .about_block__foot_text img {
  width: 100%;
}
.index_page .about_block .about_content {
  background: #fff;
  padding: 63px 78px 77px;
  margin-top: 75px;
  border-radius: 16px;
  position: relative;
}
.index_page .about_block .about_content::before {
  content: "";
  position: absolute;
  bottom: -81px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border: 29px solid transparent;
  border-top: 52px solid #fff;
}
.index_page .about_block .about_content__title {
  max-width: 846px;
  width: 100%;
  margin: auto;
}
.index_page .about_block .about_content__title img {
  width: 100%;
}
.index_page .about_block .about_content__img {
  max-width: 887px;
  width: 100%;
  margin: auto;
  margin-top: 70px;
}
.index_page .about_block .about_content__img img {
  width: 100%;
}
.index_page .about_block .about_content__lead_head {
  margin-top: 91px;
  text-align: center;
}
.index_page .about_block .about_content__lead_head span {
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.06em;
  line-height: 1.8;
  color: #003289;
  background: linear-gradient(transparent 96.5%, #003289 0%);
  display: inline;
  padding: 0 2px 4px;
}
.index_page .about_block .about_content__lead {
  margin-top: 12px;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.8;
  text-align: center;
  color: #222222;
}
.index_page .about_block .about_content__lead span {
  color: #003289;
}
.index_page .about_block .about_content__caption {
  display: flex;
  -webkit-column-gap: 47px;
          column-gap: 47px;
  justify-content: space-between;
  margin-top: 36px;
}
.index_page .about_block .about_content__caption_box {
  padding: 25px 25px 32px;
}
.index_page .about_block .about_content__caption_box--green {
  background: #e1f6f2;
}
.index_page .about_block .about_content__caption_box--blue {
  background: #e0efff;
}
.index_page .about_block .about_content__caption_box--narrow {
  max-width: 314px;
  width: 100%;
  flex-shrink: 2;
  position: relative;
}
.index_page .about_block .about_content__caption_box--narrow::after {
  content: "";
  width: 18px;
  height: 18px;
  border-top: 2px solid #003289;
  border-right: 2px solid #003289;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  right: -27px;
}
.index_page .about_block .about_content__caption_box--wide {
  max-width: 683px;
  width: 100%;
  position: relative;
}
.index_page .about_block .about_content__caption_box--wide::after {
  content: "";
  width: 18px;
  height: 18px;
  border-top: 2px solid #003289;
  border-right: 2px solid #003289;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%) rotate(45deg);
          transform: translate(-50%) rotate(45deg);
}
.index_page .about_block .about_content__caption_title {
  font-weight: 500;
  font-size: 19px;
  text-align: center;
  letter-spacing: 0.07em;
}
.index_page .about_block .about_content__caption_title--green {
  color: #089674;
}
.index_page .about_block .about_content__caption_title--blue {
  color: #003289;
}
.index_page .about_block .about_content__caption_img {
  max-width: 208px;
  width: 100%;
  margin: auto;
  margin-top: 14px;
}
.index_page .about_block .about_content__caption_img img {
  width: 100%;
}
.index_page .about_block .about_content__caption_list {
  display: flex;
  -webkit-column-gap: 50px;
          column-gap: 50px;
  margin-top: 10px;
}
.index_page .about_block .about_content__caption_text {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.9;
  text-align: center;
  letter-spacing: 0.03em;
  color: #222222;
}
.index_page .about_block .about_content__foot {
  margin-top: 64px;
  display: flex;
}
.index_page .about_block .about_content__foot_item {
  position: relative;
  padding-left: 2em;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.06em;
  color: #222222;
}
.index_page .about_block .about_content__foot_item::before {
  content: "";
  background: url("/assets/img/common/ico_check.svg") center center no-repeat;
  background-size: contain;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 4px;
  left: 0;
}
.index_page .about_block .about_content__foot_item + .about_content__foot_item {
  margin-top: 12px;
}
.index_page .about_block .about_content__foot_item--title {
  font-weight: 700;
  font-size: 16px;
  color: #003289;
  padding-left: 0;
}
.index_page .about_block .about_content__foot_item--title::before {
  display: none;
  padding-left: 0;
}
.index_page .about_block .about_content__foot_img {
  margin-left: 58px;
  width: 147px;
}
.index_page .about_block .about_content__foot_img img {
  width: 100%;
}
.index_page .about_block .about_content__foot_img + .about_content__foot_list {
  margin-left: 67px;
}
.index_page .solution_block__inner {
  max-width: 1240px;
  width: 100%;
  margin: auto;
  padding: 114px 20px 0;
}
.index_page .solution_block__title {
  text-align: center;
}
.index_page .solution_block__title span {
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.06em;
  color: #003289;
  background: #fff;
  padding: 0 10px;
  display: inline-block;
}
.index_page .solution_block__card_box {
  display: flex;
  border: 1px solid #c7c7c7;
  border-radius: 8px;
  padding: 63px 63px 48px;
  gap: 32px;
  margin-top: -15px;
  flex-wrap: wrap;
}
.index_page .solution_block__card {
  flex: 1 1 auto;
  background: #f7f7f7;
  padding: 24px 10px 24px;
}
.index_page .solution_block__card img {
  margin: auto;
}
.index_page .solution_block__texts {
  margin-top: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.index_page .solution_block__label {
  font-weight: 700;
  font-size: 40px;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  background: linear-gradient(105.67deg, #063a77 18.64%, #7344d5 123.93%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.index_page .solution_block__text {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.06em;
  color: #222222;
  padding-left: 19px;
  margin-left: 19px;
  border-left: 1px solid #003289;
}
.index_page .solution_block__img {
  margin: auto;
  margin-top: 100px;
}
.index_page .feature_block {
  position: relative;
}
.index_page .feature_block::before {
  content: "";
  position: absolute;
  background: url("/assets/img/top/bg_feature_img01.jpg") center center no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 571px;
  z-index: -1;
}
.index_page .feature_block__inner {
  max-width: 1240px;
  width: 100%;
  margin: auto;
  padding: 129px 20px 176px;
}
.index_page .feature_block .feature_content01 {
  display: flex;
  justify-content: space-between;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #cbcbcb;
  margin-top: 109px;
}
.index_page .feature_block .feature_content01__left {
  background: #f5f5f5;
  padding: 40px 41px 62px;
  border-radius: 6px;
  position: relative;
}
.index_page .feature_block .feature_content01__left::before, .index_page .feature_block .feature_content01__left::after {
  content: "";
  position: absolute;
  top: 47%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-top: 4px solid #003289;
  border-right: 4px solid #003289;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.index_page .feature_block .feature_content01__left::before {
  right: -50px;
}
.index_page .feature_block .feature_content01__left::after {
  right: -70px;
}
.index_page .feature_block .feature_content01__left img {
  max-width: 200px;
  width: 100%;
  margin: auto;
  margin-top: 60px;
}
.index_page .feature_block .feature_content01__title {
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  text-align: center;
}
.index_page .feature_block .feature_content01__title span {
  display: inline-block;
  color: #222222;
  border-bottom: 1px solid #000;
  padding-bottom: 5px;
}
.index_page .feature_block .feature_content01__title--emphasis {
  font-size: 28px;
}
.index_page .feature_block .feature_content01__title--emphasis span {
  color: #003289;
  border-bottom: 1px solid #003289;
}
.index_page .feature_block .feature_content01__list {
  margin-bottom: 7px;
}
.index_page .feature_block .feature_content01__item {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.06em;
  color: #222222;
  border-radius: 5px;
}
.index_page .feature_block .feature_content01__item--large {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.9;
}
.index_page .feature_block .feature_content01__item--large span {
  color: #003289;
}
.index_page .feature_block .feature_content01__right {
  padding: 31px 41px 33px 0;
}
.index_page .feature_block .feature_content01__box {
  display: flex;
  flex-wrap: wrap;
  -webkit-column-gap: 27px;
          column-gap: 27px;
  align-items: center;
  margin-top: 45px;
  justify-content: center;
}
.index_page .feature_block .feature_content01__img {
  max-width: 333px;
  width: 100%;
}
.index_page .feature_block .feature_content02 {
  margin-top: 74px;
}
.index_page .feature_block .feature_content02 img {
  margin: auto;
  margin-top: 61px;
}
.index_page .superiority_block {
  background: #f2f6fe;
}
.index_page .superiority_block__inner {
  max-width: 1240px;
  width: 100%;
  margin: auto;
  padding: 125px 20px 176px;
}
.index_page .superiority_block__img {
  max-width: 524px;
  width: 100%;
  flex-shrink: 2;
  margin-top: 21px;
}
.index_page .superiority_block__img img {
  width: 100%;
}
.index_page .superiority_block .superiority_service {
  margin-top: 80px;
}
.index_page .superiority_block .superiority_service__img {
  max-width: 503px;
  width: 100%;
  margin: auto;
  margin-top: 59px;
  border-radius: 8px;
}
.index_page .superiority_block .superiority_service__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 39px 46px;
  max-width: 992px;
  width: 100%;
  margin: auto;
  margin-top: 50px;
  border: 1px solid #ffffff;
  border-radius: 6px;
  padding: 48px 47px 46px 57px;
}
.index_page .superiority_block .superiority_service__title {
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.02em;
  color: #ffffff;
  position: relative;
  padding-left: 18px;
}
.index_page .superiority_block .superiority_service__title::before {
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  left: 0;
  width: 6px;
  height: 27px;
  background: #fff;
}
.index_page .superiority_block .superiority_service__text {
  margin-top: 11px;
  padding-left: 19px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: #ffffff;
}
.index_page .superiority_block .superiority_service__img_foot {
  max-width: 800px;
  width: 100%;
  margin: auto;
  margin-top: 56px;
}
.index_page .superiority_block .superiority_module {
  background: #fff;
  border-radius: 8px;
  padding: 56px 20px 82px;
  margin-top: 68px;
}
.index_page .superiority_block .superiority_module__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #222222;
  text-align: center;
}
.index_page .superiority_block .superiority_module__title span {
  color: #003289;
}
.index_page .superiority_block .superiority_module__contents {
  max-width: 986px;
  width: 100%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  margin-top: 40px;
  position: relative;
}
.index_page .superiority_block .superiority_module__contents::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 510px;
  height: 221px;
  background: transparent;
  border: 5px solid #6684b8;
}
.index_page .superiority_block .superiority_module__card {
  border: 1px solid #d1d1d1;
  border-radius: 6px;
  padding: 30px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-column-gap: 43px;
          column-gap: 43px;
  position: relative;
  z-index: 2;
  background: #fff;
}
.index_page .superiority_block .superiority_module__card:nth-of-type(1) .superiority_module__img {
  max-width: 182px;
  width: 100%;
}
.index_page .superiority_block .superiority_module__card:nth-of-type(2) .superiority_module__img {
  max-width: 167px;
  width: 100%;
}
.index_page .superiority_block .superiority_module__card:nth-of-type(3) {
  padding: 30px 20px 30px 57px;
}
.index_page .superiority_block .superiority_module__card:nth-of-type(3) .superiority_module__img {
  max-width: 118px;
  width: 100%;
}
.index_page .superiority_block .superiority_module__card:nth-of-type(4) {
  padding: 30px 20px 30px 57px;
}
.index_page .superiority_block .superiority_module__card:nth-of-type(4) .superiority_module__img {
  max-width: 118px;
  width: 100%;
}
.index_page .superiority_block .superiority_module__img img {
  width: 100%;
}
.index_page .superiority_block .superiority_module__list {
  max-width: 202px;
}
.index_page .superiority_block .superiority_module__item {
  display: flex;
  align-items: center;
  -webkit-column-gap: 10px;
          column-gap: 10px;
  font-size: 14px;
}
.index_page .superiority_block .superiority_module__item + .superiority_module__item {
  margin-top: 14px;
}
.index_page .superiority_block .superiority_module__item + .superiority_module__item--mt_narrow {
  margin-top: 3px;
}
.index_page .superiority_block .superiority_module__item img {
  min-width: 25px;
}
.index_page .superiority_block .superiority_module__text {
  max-width: 202px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: #222222;
}
.index_page .strength_block {
  position: relative;
}
.index_page .strength_block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url("/assets/img/top/bg_strength.jpg") center center no-repeat;
  background-size: cover;
  width: 100%;
  height: 571px;
  z-index: -1;
}
.index_page .strength_block__inner {
  max-width: 1240px;
  width: 100%;
  margin: auto;
  padding: 130px 20px 160px;
}
.index_page .strength_block__content {
  margin-top: 109px;
  background: #fff;
  padding: 50px 108px 48px 80px;
  border-radius: 8px;
  border: 1px solid #cbcbcb;
  background: url("/assets/img/common/bg_particle_light.jpg") center center no-repeat;
  background-size: cover;
}
.index_page .strength_block__head {
  display: flex;
  justify-content: space-between;
  -webkit-column-gap: 20px;
          column-gap: 20px;
  flex-wrap: wrap-reverse;
}
.index_page .strength_block__list {
  max-width: 527px;
  width: 100%;
}
.index_page .strength_block__item {
  display: flex;
  -webkit-column-gap: 31px;
          column-gap: 31px;
  padding: 26px 0 11px;
}
.index_page .strength_block__item + .strength_block__item {
  border-top: 1px solid #cac6ed;
}
.index_page .strength_block__label {
  font-family: "Inter";
  font-weight: 600;
  font-size: 76px;
  text-transform: capitalize;
  background: linear-gradient(105.67deg, #063a77 18.64%, #7344d5 123.93%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  min-width: 91px;
  white-space: nowrap;
}
.index_page .strength_block__lead {
  font-weight: 700;
  font-size: 16px;
  text-align: justify;
  color: #003289;
}
.index_page .strength_block__title {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: #222222;
}
.index_page .strength_block__img {
  margin: auto;
  margin-top: 43px;
}
.index_page .strength_block__flow {
  margin-top: 126px;
}
.index_page .strength_block__flow_img {
  margin-top: 42px;
}
.index_page .companies_block {
  overflow-x: hidden;
  padding: 50px 0;
  margin-top: 80px;
}
.index_page .companies_block__img_box {
  display: flex;
  align-items: center;
  justify-content: center;
}
.index_page .companies_block__img_box + .companies_block__img_box {
  margin-top: 10px;
}
.index_page .companies_block__img_box:nth-of-type(odd) img {
  -webkit-animation: companiesSlideRivers 35s linear infinite;
          animation: companiesSlideRivers 35s linear infinite;
}
.index_page .companies_block__img_box.is-sp {
  display: none;
}
.index_page .companies_block__img {
  -webkit-animation: companiesSlide 35s linear infinite;
          animation: companiesSlide 35s linear infinite;
}
@-webkit-keyframes companiesSlide {
  0% {
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes companiesSlide {
  0% {
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@-webkit-keyframes companiesSlideRivers {
  0% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  100% {
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}
@keyframes companiesSlideRivers {
  0% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  100% {
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}
.index_page .products_block {
  background: linear-gradient(105.67deg, #063a77 18.64%, #7344d5 123.93%);
  position: relative;
  overflow-x: hidden;
}
.index_page .products_block::before {
  content: "";
  background: url("/assets/img/top/bg_products.png") center center no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1094px;
  z-index: 1;
}
.index_page .products_block__inner {
  position: relative;
  max-width: 1240px;
  width: 100%;
  margin: auto;
  padding: 130px 20px 176px;
  z-index: 2;
}
.index_page .cases_block {
  position: relative;
  background: url("/assets/img/top/bg_cases.jpg") center center no-repeat;
  background-size: cover;
}
.index_page .cases_block__inner {
  overflow: hidden;
  padding: 130px 20px 176px;
}
.index_page .cases_block .cases-swiper {
  margin-top: calc(38 / 375 * 100vw);
}
.index_page .cases_block .cases-swiper + .c-btn {
  margin-top: 86px;
}
.index_page .ceo_message_block {
  background: #f2f6fe;
  overflow: hidden;
}
.index_page .ceo_message_block__inner {
  max-width: 1240px;
  width: 100%;
  margin: auto;
  padding: 143px 20px 174px;
  position: relative;
  z-index: 2;
}
.index_page .ceo_message_block__inner::before {
  content: "";
  background: url("/assets/img/top/pic_ceo_message02.svg") center center no-repeat;
  background-size: contain;
  width: 1372px;
  height: 397px;
  position: absolute;
  top: 97px;
  right: -535px;
  z-index: -1;
}
.index_page .ceo_message_block__content {
  display: flex;
  -webkit-column-gap: 74px;
          column-gap: 74px;
  background: #fff;
  padding: 61px 80px 66px 56px;
  margin-top: 108px;
  border-radius: 8px;
}
.index_page .ceo_message_block__img {
  max-width: 367px;
  width: 100%;
  margin-top: -100px;
  -webkit-filter: drop-shadow(0px 0px 18px rgba(0, 0, 0, 0.06));
          filter: drop-shadow(0px 0px 18px rgba(0, 0, 0, 0.06));
}
.index_page .ceo_message_block__img img {
  border-radius: 8px;
  width: 100%;
}
.index_page .ceo_message_block__texts {
  max-width: 623px;
  width: 100%;
}
.index_page .ceo_message_block__title {
  font-weight: 700;
  font-size: 34px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #222222;
  text-align: center;
  position: relative;
}
.index_page .ceo_message_block__title span {
  color: #003289;
}
.index_page .ceo_message_block__title::before, .index_page .ceo_message_block__title::after {
  content: "";
  background: url("/assets/img/common/ico_quotation.svg") center center no-repeat;
  background-size: contain;
  width: 38px;
  height: 29px;
  position: absolute;
}
.index_page .ceo_message_block__title::before {
  top: 0px;
  left: 5px;
}
.index_page .ceo_message_block__title::after {
  bottom: 0px;
  right: 5px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.index_page .ceo_message_block__text {
  margin-top: 33px;
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
  text-align: justify;
  letter-spacing: 0.03em;
  color: #222222;
}
.index_page .ceo_message_block__name {
  margin-top: 27px;
  text-align: right;
  font-weight: 400;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.03em;
  color: #222222;
}
.index_page .ceo_message_block__name span {
  margin-left: 18px;
  font-size: 22px;
  font-weight: 500;
}
.index_page .profile_block__container {
  position: relative;
  max-width: 1782px;
  width: 100%;
  margin: auto;
}
.index_page .profile_block__img {
  width: 47%;
  position: absolute;
  right: 0;
  top: 150px;
}
.index_page .profile_block__img img {
  border-radius: 5px 0 0 5px;
  width: 100%;
}
.index_page .profile_block__inner {
  max-width: 1240px;
  width: 100%;
  margin: auto;
  padding: 130px 20px 176px;
}
.index_page .profile_block__content {
  display: flex;
  justify-content: space-between;
  gap: 69px;
  margin-top: 64px;
  background: #f8f8f8;
  padding: 66px 68px 76px 90px;
  border-radius: 8px;
}
.index_page .profile_block__tr {
  border-bottom: 1px solid #d5d5d5;
  display: block;
  position: relative;
}
.index_page .profile_block__tr::before {
  content: "";
  width: 117px;
  height: 1px;
  background: #003289;
  position: absolute;
  left: 0;
  bottom: -1px;
}
.index_page .profile_block__th {
  min-width: 144px;
  text-align: left;
  vertical-align: top;
  padding-top: 20px;
  color: #003289;
}
.index_page .profile_block__td {
  font-weight: 400;
  font-size: 14px;
  line-height: 2;
  text-align: justify;
  letter-spacing: 0.03em;
  color: #222222;
  padding: 20px 0 16px 0;
}
.index_page .profile_block__item + .profile_block__item {
  margin-top: 6px;
}
.index_page .profile_block__map_box {
  align-self: flex-end;
  max-width: 487px;
  width: 100%;
}
.index_page .profile_block__map {
  width: 100%;
  position: relative;
  height: 0;
  padding-top: 75%;
}
.index_page .profile_block__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.index_page .profile_block__map_text {
  font-family: "Roboto";
  display: flex;
  align-items: center;
  justify-content: flex-end;
  -webkit-column-gap: 7px;
          column-gap: 7px;
  font-weight: 500;
  font-size: 14px;
  color: #003289;
  margin-top: 10px;
  transition: opacity 0.2s;
}
.index_page .profile_block__map_text a {
  display: contents;
}
.index_page .recruit_block {
  background: linear-gradient(99.1deg, #f4f3fd 12.01%, #e2e9fb 97.66%);
}
.index_page .recruit_block__inner {
  max-width: 1240px;
  width: 100%;
  margin: auto;
  padding: 112px 20px 115px;
  display: flex;
  align-items: flex-end;
  -webkit-column-gap: 86px;
          column-gap: 86px;
}
.index_page .recruit_block__banner {
  max-width: 695px;
  width: 100%;
  position: relative;
  padding: 67px 100px 65px 46px;
  border-radius: 10px;
  margin-bottom: 35px;
  text-decoration: none;
  z-index: 1;
  overflow: hidden;
}
.index_page .recruit_block__banner::after {
  content: "";
  border-radius: 8px;
  background: url("/assets/img/top/pic_recruit_banner.jpg") center center no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.index_page .recruit_block__banner::before {
  content: "";
  width: 40px;
  height: 40px;
  background: url("/assets/img/common/ico_arrow_white.svg") center center no-repeat;
  background-size: contain;
  position: absolute;
  right: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  transition: opacity 0.2s;
}
.index_page .recruit_block__label {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: #ffffff;
  transition: opacity 0.2s;
}
.index_page .recruit_block__title {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.5;
  color: #ffffff;
  margin-top: 10px;
  transition: opacity 0.2s;
}
.index_page .scroll_top {
  position: fixed;
  opacity: 0;
  right: 64px;
  bottom: 80px;
  display: none;
  width: 60px;
  height: 60px;
  background-image: url("../img/common/ico_scroll_top.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  z-index: 11;
}

.list_page {
  padding-bottom: 176px;
}

.news_page .news_block__inner {
  max-width: 1240px;
  width: 100%;
  margin: auto;
  padding: 0 20px 120px;
}
.news_page .news_block__inner--wide {
  padding: 0 20px 160px;
}
.news_page .news_block__wrapper {
  width: 82%;
}
.news_page .news_block__wrapper + .c-btn {
  margin-top: 124px;
}
.news_page .news_block__wrapper + .c-pagination {
  margin-top: 115px;
}
.news_page .news_block a {
  text-decoration: none;
}
.news_page .news_block .news_list__item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 26px;
}
.news_page .news_block .news_list__item + .news_list__item {
  margin-top: 20px;
}
.news_page .news_block .news_list__time {
  font-family: "Inter";
  font-weight: 400;
  font-size: 14px;
  line-height: 2;
  text-align: center;
  color: #7796ba;
  padding-right: 16px;
}
.news_page .news_block .news_list__text {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.02em;
  color: #484848;
  padding-left: 20px;
}
.news_page .news_block .news_wrapper {
  display: flex;
  -webkit-column-gap: 77px;
          column-gap: 77px;
}
.news_page .news_content__title {
  font-weight: 500;
  font-size: 32px;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: #222222;
}
.news_page .news_content__title + .news_list__head {
  margin-top: 18px;
}
.news_page .news_content__img {
  margin-top: 52px;
  width: 100%;
}
.news_page .news_content__img img {
  width: 100%;
}
.news_page .news_content__text {
  font-weight: 400;
  font-size: 15px;
  line-height: 2;
  text-align: justify;
  letter-spacing: 0.02em;
  color: #222222;
  margin-top: 46px;
}
.news_page .news_content__text + .news_content__text {
  margin-top: 32px;
}
.news_page .news_content__text + .c-btn {
  margin-top: 118px;
}
.news_page .news_past {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  height: 100%;
}
.news_page .news_past__head {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: #222222;
  padding-bottom: 22px;
  border-bottom: 1px solid #003289;
  white-space: nowrap;
}
.news_page .news_past__list {
  margin-top: 34px;
}
.news_page .news_past__item {
  cursor: pointer;
  font-family: "Inter";
  font-weight: 400;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #003289;
  list-style: none;
  transition: opacity 0.2s;
}
.news_page .news_past__item + .news_past__item {
  margin-top: 7px;
}
.news_page .news-menu {
  float: left;
}
.news_page .news-years {
  list-style: none;
  font-size: 15px;
  line-height: 2;
}
.news_page .news-years a {
  display: inline-block;
  color: #6c6c6c;
}
.news_page .news-years a:hover {
  color: #000;
  opacity: 1;
}
.news_page .news-years a.current {
  color: #000;
}
.news_page .news-years li {
  line-height: 2;
  font-size: 17px;
}
.news_page .news {
  padding-top: 100px;
  min-height: 250px;
}
.news_page .news-list {
  position: relative;
  margin: -40px 0 0 90px;
}
.news_page .news-back {
  font-size: 12px;
  width: 21px;
}
.news_page .news-back img {
  width: 21px;
  padding: 5px 0 10px;
}
.news_page .news-back a {
  display: block;
  color: #6c6c6c;
}
.news_page .news-back a:hover {
  color: #000;
  opacity: 1;
}
.news_page .news .atpress_title_frame {
  display: table;
  width: 100%;
  margin: 40px 0 0;
}
.news_page .news #atpress_pr_space {
  margin: 40px 0 0;
}
.news_page .news .atpress_pr_sent_date {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
  padding-top: 2px;
  width: 80px;
  font-size: 12px;
  color: #000;
  font-family: "Inter";
  font-weight: 400;
  font-size: 14px;
  line-height: 2;
  text-align: center;
  color: #7796ba;
}
.news_page .news .atpress_pr_sent_date br {
  display: none;
}
.news_page .news .atpress_date_frame {
  display: table-cell;
  padding-top: 2px;
  width: 80px;
  font-size: 12px;
  color: #000;
}
.news_page .news .atpress_date_frame .date {
  font-size: 18px;
}
.news_page .news .atpress_title {
  display: table-cell;
  vertical-align: middle;
  margin-left: 79px;
  padding-left: 30px;
  font-size: 18px;
  line-height: 1.9;
}
.news_page .news .atpress_title a {
  display: block;
  color: #6c6c6c;
}
.news_page .news .atpress_title a:hover {
  color: #000;
  opacity: 1;
}
.news_page .news .atpress_pr_subtitle {
  margin-left: 80px;
  padding-left: 30px;
}
.news_page .news .atpress_pr_body {
  text-align: justify;
  word-break: break-all;
  margin: 30px 0 0 110px;
  color: #6c6c6c;
  font-size: 18px;
  line-height: 1.9;
}
.news_page .news .atpress_pr_body .img {
  margin-top: 50px;
}
.news_page .news .atpress_pr_logo {
  display: none;
}
.news_page .news .atpress_pr_publisher_name {
  display: none;
}
.news_page .contact {
  margin: 0 0 100px;
}
.news_page .contact-2colWrap {
  padding-right: 40px;
}
.news_page .contact-txtBox {
  margin: 30px 0 0;
}
.news_page .contact-txtBox:first-child {
  margin: 0;
}
.news_page .contact-txt {
  line-height: 1.9;
  font-size: 18px;
}
.news_page .contact-mail {
  line-height: 1.9;
}
.news_page .contact-mail a {
  color: #6c6c6c;
}
.news_page .contact-mail a:hover {
  opacity: 1;
  color: #000;
}
.news_page .contact-address {
  font-size: 14px;
  line-height: 1.9;
}
.news_page .contact-address .addressBox {
  margin-top: 27px;
}
.news_page .contact-address .addressBox:first-child {
  margin-top: 0;
}
.news_page .contact-address .tel {
  display: inline-block;
}
.news_page .contact-address .fax {
  display: inline-block;
  margin-left: 20px;
}
.news_page .contact-address .zipcode {
  display: inline-block;
}
.news_page .contact-address .googleMap {
  display: inline-block;
  margin-left: 10px;
  color: #6c6c6c;
}
.news_page .contact-address .googleMap:hover {
  opacity: 1;
  color: #000;
}
.news_page .news .atpress_pr_title,
.news_page .news .atpress_title {
  display: table-cell;
  vertical-align: middle;
  margin-left: 79px;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: #222222;
}
.news_page .news .atpress_pr_body {
  text-align: justify;
  word-break: break-all;
  margin: 30px 0 0 0;
  width: 100%;
  color: #6c6c6c;
  font-size: 18px;
  line-height: 1.9;
}
.news_page .news .atpress_pr_body p {
  font-family: "Noto Sans JP";
  font-size: 15px;
  line-height: 2;
  text-align: justify;
  letter-spacing: 0.03em;
  color: #222222;
}

/**
 * Swiper 8.4.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2022 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: November 21, 2022
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}
.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-backface-hidden .swiper-slide {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}
.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  width: var(--swiper-centered-offset-after);
}
.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  height: var(--swiper-centered-offset-after);
}
.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}

/**
 * Swiper 8.4.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2022 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: November 21, 2022
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-backface-hidden .swiper-slide {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
          transform: translate3d(0px, -50%, 0);
}

.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-vertical > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-vertical {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
:root {
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  */
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@-webkit-keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
          transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev,
.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-top,
.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-filter: blur(50px);
          filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-top,
.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: opacity, height, -webkit-transform;
  transition-property: transform, opacity, height;
  transition-property: transform, opacity, height, -webkit-transform;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

@media screen and (min-width: 769px) {
  .header_recruit_block .header_block__inner {
    align-items: flex-start;
    padding: 0;
  }
}

@media screen and (hover: hover) and (pointer: fine) and (min-width: 1024px) {
  .index_page .recruit_block__banner:hover .recruit_block__label,
  .index_page .recruit_block__banner:hover .recruit_block__title {
    opacity: 0.8;
  }
  .index_page .recruit_block__banner:hover::before {
    opacity: 0.8;
  }
  .index_page .recruit_block__banner:hover::after {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

@media screen and (min-width: 1024px) and (hover: hover) and (pointer: fine) {
  .hamburger_modal__item a:hover {
    opacity: 0.8;
  }
  .hamburger_modal__auth_btn a:hover {
    opacity: 0.8;
  }
  .hamburger_modal__icon:hover {
    opacity: 0.8;
  }
}

@media screen and (min-width: 1728px) {
  .header_block__list {
    -webkit-column-gap: 39px;
            column-gap: 39px;
  }
  .header_block__item {
    font-size: 15px;
  }
  .header_block__item--btn {
    font-size: 14px;
  }
}

@media screen and (max-width: 1728px) {
  .header_recruit_block .header_block__item {
    font-size: calc(19 / 1728 * 100vw);
  }
  .header_recruit_block .header_block__item a {
    padding: 3.3125rem calc(30 / 1728 * 100vw) 1.875rem;
  }
}

@media screen and (max-width: 1024px) {
  .p-contact {
    padding: 60px 20px 120px;
  }
  .p-contact__inner {
    flex-direction: column;
    align-items: center;
  }
  .p-contact__inner .p-contact_left {
    text-align: center;
  }
  .cases_detail_page .detail_result_banner__img {
    margin-right: calc(8 / 1024 * 100vw);
  }
  .index_page .superiority_block .superiority_module__contents {
    grid-template-columns: repeat(1, 1fr);
  }
  .index_page .superiority_block .superiority_module__contents::before {
    left: 50%;
    top: auto;
    bottom: 10%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    width: 5px;
    height: 70%;
    background: #6684b8;
    border: none;
  }
  .index_page .profile_block__content {
    flex-wrap: wrap;
  }
  .index_page .profile_block__table {
    width: 100%;
  }
  .index_page .profile_block__map_box {
    max-width: 100%;
  }
}

@media screen and (max-width: 769px) {
  .is-pc {
    display: none;
  }
  .is-sp {
    display: block;
  }
  html {
    font-size: calc(16 / 375 * 100vw);
  }
  .c-breadcrumb {
    margin-top: calc(20 / 375 * 100vw);
  }
  .c-breadcrumb__item {
    font-size: 0.8125rem;
  }
  .c-breadcrumb__item + .c-breadcrumb__item {
    margin-left: calc(15 / 375 * 100vw);
  }
  .c-breadcrumb__item + .c-breadcrumb__item::before {
    width: calc(6 / 375 * 100vw);
    height: calc(6 / 375 * 100vw);
    margin-right: calc(15 / 375 * 100vw);
  }
  .c-btn--large {
    font-size: calc(16 / 375 * 100vw);
  }
  .c-btn--large a {
    padding-bottom: calc(15 / 375 * 100vw);
  }
  .c-btn--large a::before {
    right: calc(0 / 375 * 100vw);
    width: calc(20 / 375 * 100vw);
    height: calc(20 / 375 * 100vw);
  }
  .c-btn__category {
    font-size: 0.75rem;
    padding: calc(7 / 375 * 100vw) calc(22 / 375 * 100vw) calc(8 / 375 * 100vw);
  }
  .c-btn__category.is-current {
    font-size: 0.75rem;
  }
  .c-card__middle {
    margin-top: calc(9 / 375 * 100vw);
  }
  .c-card__day {
    font-size: 0.75rem;
  }
  .c-card__category {
    font-size: 0.75rem;
    margin-left: calc(12 / 375 * 100vw);
  }
  .c-card__category::before {
    height: calc(13 / 375 * 100vw);
    margin-right: calc(12 / 375 * 100vw);
  }
  .c-card__title {
    font-size: 0.8125rem;
    margin-top: calc(8 / 375 * 100vw);
  }
  .c-card__title--large {
    font-size: 1.125rem;
  }
  .c-card__title--news {
    font-size: 0.75rem;
  }
  .c-card__tag {
    gap: calc(10 / 375 * 100vw);
    margin-top: calc(12 / 375 * 100vw);
  }
  .c-card__text {
    font-size: 0.6875rem;
    margin-top: calc(2 / 375 * 100vw);
  }
  .c-form .mw_wp_form {
    padding-top: 80px;
    margin-top: -80px;
  }
  .c-form__note {
    font-size: calc(12 / 375 * 100vw);
    margin-left: calc(-5 / 375 * 100vw);
  }
  .c-form .c-form_require {
    font-size: calc(10 / 375 * 100vw);
    margin: 0 calc(5 / 375 * 100vw);
  }
  .c-form .c-form_item {
    flex-direction: column;
    padding: calc(15 / 375 * 100vw) 0 calc(32 / 375 * 100vw);
  }
  .c-form .c-form_item + .c-form_item {
    padding: calc(24 / 375 * 100vw) 0 calc(32 / 375 * 100vw);
  }
  .c-form .c-form_item__title {
    width: 100%;
    font-size: calc(16 / 375 * 100vw);
  }
  .c-form .c-form_item__main .c-form_item_input {
    margin-top: calc(12 / 375 * 100vw);
  }
  .c-form .c-form_item__main .c-form_item_input input,
  .c-form .c-form_item__main .c-form_item_input textarea {
    font-size: calc(16 / 375 * 100vw);
    padding: calc(8 / 375 * 100vw) calc(16 / 375 * 100vw) calc(10 / 375 * 100vw);
  }
  .c-form .c-form_item__main .c-form_submit {
    margin-top: calc(36 / 375 * 100vw);
  }
  .c-form .c-form_item__main .c-form_submit input {
    font-size: calc(16 / 375 * 100vw);
    border-radius: calc(50 / 375 * 100vw);
    padding: calc(15 / 375 * 100vw) 0 calc(17 / 375 * 100vw);
    padding: 20px;
  }
  .c-pagination {
    margin-top: calc(50 / 375 * 100vw);
  }
  .c-pagination .wp-pagenavi a, .c-pagination .wp-pagenavi .current {
    width: calc(28 / 375 * 100vw);
    margin: 0 calc(5 / 375 * 100vw);
    font-size: 1rem;
  }
  .c-pagination .wp-pagenavi a.previouspostslink, .c-pagination .wp-pagenavi a.nextpostslink, .c-pagination .wp-pagenavi .current.previouspostslink, .c-pagination .wp-pagenavi .current.nextpostslink {
    width: calc(29 / 375 * 100vw);
    height: calc(16 / 375 * 100vw);
    margin-left: calc(30 / 375 * 100vw);
    margin-top: calc(10 / 375 * 100vw);
  }
  .c-pagination .wp-pagenavi a.previouspostslink, .c-pagination .wp-pagenavi .current.previouspostslink {
    margin-right: calc(30 / 375 * 100vw);
    margin-left: 0;
  }
  .c-pagination .wp-pagenavi .current {
    padding-bottom: calc(3 / 375 * 100vw);
  }
  .c-pagination .wp-pagenavi .extend {
    margin: 0 calc(5 / 375 * 100vw);
    padding-bottom: calc(10 / 375 * 100vw);
  }
  .c-subpage_mainvisual {
    height: calc(230 / 375 * 100vw);
  }
  .c-subpage_mainvisual__inner {
    padding: 0 calc(30 / 375 * 100vw);
  }
  .c-subpage_mainvisual__title {
    font-size: 2.25rem;
    margin-top: calc(99 / 375 * 100vw);
    letter-spacing: 0;
  }
  .c-subpage_mainvisual__text {
    font-size: 0.75rem;
    margin-top: calc(3 / 375 * 100vw);
  }
  .p-category {
    flex-direction: column;
    margin-top: calc(35 / 375 * 100vw);
  }
  .p-category__title {
    font-size: 1rem;
    margin-right: 0;
    border-bottom: 1px solid #5A4DBB;
    padding-bottom: calc(12 / 375 * 100vw);
  }
  .p-category__title::after {
    display: none;
  }
  .p-category__list {
    margin-top: calc(24 / 375 * 100vw);
    gap: calc(12 / 375 * 100vw) calc(9 / 375 * 100vw);
  }
  .p-contact {
    background: url(/assets/img/contact/bg_contact_sp.jpg) no-repeat center center/cover;
    padding: calc(50 / 375 * 100vw) calc(20 / 375 * 100vw) calc(88 / 375 * 100vw);
  }
  .p-contact__inner {
    gap: calc(32 / 375 * 100vw) 0;
  }
  .p-contact__inner .p-contact_left {
    max-width: 100%;
  }
  .p-contact__inner .p-contact_right {
    max-width: 100%;
    margin-top: 0;
  }
  .p-contact .mw_wp_form.mw_wp_form_complete .p-head__lead {
    font-size: calc(13 / 375 * 100vw);
  }
  .p-head--flex {
    flex-direction: column;
    align-items: flex-start;
  }
  .p-head__box--txt_center_sp {
    text-align: center;
  }
  .p-head__label {
    font-size: calc(11 / 375 * 100vw);
  }
  .p-head__title {
    font-size: 1.875rem;
  }
  .p-head__sub_title + .p-head__lead {
    margin-top: calc(40 / 375 * 100vw);
  }
  .p-head__sub_title {
    font-size: 1.625rem;
    margin-top: calc(11 / 375 * 100vw);
  }
  .p-head__lead {
    font-size: calc(14 / 375 * 100vw);
  }
  .p-list {
    padding: 0 calc(20 / 375 * 100vw);
  }
  .p-list__main {
    gap: calc(40 / 375 * 100vw) calc(17 / 375 * 100vw);
    margin-top: calc(35 / 375 * 100vw);
    grid-template-columns: repeat(2, 1fr);
  }
  .p-products {
    flex-direction: column;
    margin-top: calc(285 / 375 * 100vw);
  }
  .p-products::before {
    width: 100%;
    left: calc(-20 / 375 * 100vw);
    right: 0;
    width: 112%;
    border-radius: 0px;
    height: calc(494 / 375 * 100vw);
    display: none;
  }
  .p-products + .p-products {
    margin-top: calc(283 / 375 * 100vw);
  }
  .p-products__bg_text {
    font-size: calc(70 / 375 * 100vw);
    right: calc(-40 / 375 * 100vw);
    top: calc(-259 / 375 * 100vw);
  }
  .p-products--reverse .p-products__bg_text {
    left: calc(-25 / 375 * 100vw);
  }
  .p-products__img {
    margin-top: calc(-212 / 375 * 100vw);
    margin-left: calc(-10 / 375 * 100vw);
  }
  .p-products__img::before {
    left: calc(10 / 375 * 100vw);
    top: calc(10 / 375 * 100vw);
  }
  .p-products__texts {
    padding: calc(67 / 375 * 100vw) calc(20 / 375 * 100vw) calc(35 / 375 * 100vw);
    background: #fff;
    margin-top: calc(-32 / 375 * 100vw);
    max-width: 100%;
  }
  .p-products__label {
    font-size: calc(12 / 375 * 100vw);
    font-weight: 600;
    letter-spacing: 0;
  }
  .p-products__title {
    font-size: calc(31 / 375 * 100vw);
    margin-top: calc(10 / 375 * 100vw);
    -webkit-column-gap: calc(16 / 375 * 100vw);
            column-gap: calc(16 / 375 * 100vw);
  }
  .p-products__title::before {
    width: calc(102 / 375 * 100vw);
    bottom: calc(-33 / 375 * 100vw);
  }
  .p-products__title_img {
    max-width: calc(108 / 375 * 100vw);
  }
  .p-products__text {
    margin-top: calc(65 / 375 * 100vw);
    font-size: calc(14 / 375 * 100vw);
    letter-spacing: 0.03em;
  }
  .p-products__btn {
    margin: auto;
    margin-top: calc(20 / 375 * 100vw);
    padding: calc(10 / 375 * 100vw) calc(50 / 375 * 100vw) calc(11 / 375 * 100vw) calc(32 / 375 * 100vw);
    width: calc(178 / 375 * 100vw);
    font-size: calc(14 / 375 * 100vw);
  }
  .p-products__btn svg {
    width: calc(13 / 375 * 100vw);
    height: calc(13 / 375 * 100vw);
  }
  .p-superiority_card {
    flex-direction: column;
    row-gap: calc(28 / 375 * 100vw);
    margin-top: calc(16 / 375 * 100vw);
    padding: 0 calc(13 / 375 * 100vw);
  }
  .p-superiority_card__item {
    flex: 1 1 auto;
    padding: calc(33 / 375 * 100vw) 0;
  }
  .p-superiority_card__item--line::before {
    top: calc(-45 / 375 * 100vw);
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    height: calc(64 / 375 * 100vw);
    width: 1px;
  }
  .p-superiority_card__item--wide {
    padding: calc(20 / 375 * 100vw) 0;
  }
  .p-superiority_card__item_img {
    width: calc(114 / 375 * 100vw);
  }
  .p-superiority_card__item_img--large {
    width: calc(172 / 375 * 100vw);
  }
  .p-superiority_card__text + img {
    margin-top: calc(42 / 375 * 100vw);
  }
  .p-superiority_card__text {
    font-size: 0.875rem;
    margin-top: calc(18 / 375 * 100vw);
  }
  .p-superiority_card__text--mt_narrow {
    margin-top: calc(8 / 375 * 100vw);
  }
  .p-superiority_detail {
    max-width: 489px;
  }
  .p-superiority_detail__lead {
    font-size: calc(16 / 375 * 100vw);
  }
  .p-superiority_detail__bubble {
    margin-top: calc(14 / 375 * 100vw);
    padding: calc(17 / 375 * 100vw) calc(8 / 375 * 100vw) calc(8 / 375 * 100vw);
  }
  .p-superiority_detail__bubble::before, .p-superiority_detail__bubble::after {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .p-superiority_detail__bubble::before {
    right: calc(44 / 375 * 100vw);
    left: auto;
    border: calc(12 / 375 * 100vw) solid transparent;
    border-bottom: calc(21 / 375 * 100vw) solid #fff;
    top: calc(-31 / 375 * 100vw);
  }
  .p-superiority_detail__bubble::after {
    right: calc(44 / 375 * 100vw);
    left: auto;
    border: calc(12 / 375 * 100vw) solid transparent;
    border-bottom: calc(21 / 375 * 100vw) solid #063a77;
    top: calc(-33 / 375 * 100vw);
  }
  .p-superiority_detail__head {
    -webkit-column-gap: calc(11 / 375 * 100vw);
            column-gap: calc(11 / 375 * 100vw);
  }
  .p-superiority_detail__title {
    font-size: calc(16 / 375 * 100vw);
  }
  .p-superiority_detail__img {
    max-width: calc(95 / 375 * 100vw);
  }
  .p-superiority_detail__foot {
    margin-top: calc(14 / 375 * 100vw);
    padding: calc(4 / 375 * 100vw) calc(10 / 375 * 100vw) calc(19 / 375 * 100vw);
  }
  .p-superiority_detail__text {
    font-size: 1.125rem;
  }
  .p-superiority_detail__main_text {
    font-size: 1.125rem;
    margin-top: calc(12 / 375 * 100vw);
  }
  .p-superiority_detail__main_text span.mb {
    line-height: 1.7;
  }
  .p-superiority_detail__main_text span.gradient {
    font-size: 1.5rem;
  }
  .p-superiority_detail__main_text + .p-superiority_detail__text {
    margin-top: calc(10 / 375 * 100vw);
  }
  .p-superiority_foot {
    flex-direction: column;
    align-items: center;
    row-gap: calc(28 / 375 * 100vw);
    margin-top: calc(46 / 375 * 100vw);
  }
  .p-superiority_foot__text {
    font-size: calc(14 / 375 * 100vw);
    max-width: calc(246 / 375 * 100vw);
    margin: auto;
  }
  .p-superiority_foot__text + .p-superiority_foot__text {
    margin-top: calc(2 / 375 * 100vw);
  }
  .p-superiority_foot__lead {
    font-size: calc(18 / 375 * 100vw);
    text-align: center;
    line-height: 2;
    margin-top: calc(15 / 375 * 100vw);
  }
  .p-superiority_foot__lead span {
    display: inline;
  }
  .p-superiority_foot__img {
    max-width: calc(141 / 375 * 100vw);
  }
  .u-mt35 {
    margin-top: calc(35 / 375 * 100vw);
  }
  .u-mt10_sp {
    margin-top: calc(10 / 375 * 100vw);
  }
  .u-mt24_sp {
    margin-top: calc(24 / 375 * 100vw);
  }
  .u-mt32_sp {
    margin-top: calc(32 / 375 * 100vw);
  }
  .u-mt60_sp {
    margin-top: calc(60 / 375 * 100vw);
  }
  .footer_block__inner {
    flex-direction: column;
    padding: calc(44 / 375 * 100vw) calc(20 / 375 * 100vw) calc(24 / 375 * 100vw);
  }
  .footer_block .footer_copyright {
    order: 3;
    margin-top: calc(13 / 375 * 100vw);
  }
  .footer_block .footer_privacy {
    order: 2;
    margin-top: calc(29 / 375 * 100vw);
  }
  .footer_block .footer_sns {
    order: 1;
    -webkit-column-gap: calc(20 / 375 * 100vw);
            column-gap: calc(20 / 375 * 100vw);
  }
  .header_block__inner {
    padding: 20px;
  }
  .header_block__logo {
    width: 92px;
  }
  .header_block__list {
    display: none;
  }
  .header_block .hamburger_icon span:nth-of-type(3) {
    margin-bottom: 6px;
  }
  .header_block .hamburger_icon {
    background: transparent;
    padding: 0;
    width: auto;
    height: auto;
  }
  .header_block .hamburger_icon.show {
    background: #fff;
    border-radius: 50%;
    width: 54px;
    height: 54px;
  }
  .header_block .hamburger_icon.show span:nth-of-type(2) {
    margin-right: 17px;
  }
  .header_block .hamburger_icon.show span:nth-of-type(1) {
    margin-top: 3px;
  }
  .header_block .hamburger_icon.is-sp {
    display: block;
  }
  .header_block .hamburger_icon__text {
    line-height: 1;
    font-size: 10px;
  }
  .hamburger_icon span {
    margin-bottom: 4px;
  }
  .hamburger_icon span:nth-of-type(3) {
    margin-bottom: 6px;
  }
  .hamburger_icon {
    background: transparent;
    padding: 0;
    width: auto;
    height: auto;
  }
  .hamburger_icon.show, .hamburger_icon.under {
    background: #fff;
    border-radius: 50%;
    width: 54px;
    height: 54px;
  }
  .hamburger_icon.show span, .hamburger_icon.under span {
    width: 20px;
  }
  .hamburger_icon.show span:nth-of-type(2), .hamburger_icon.under span:nth-of-type(2) {
    width: 15px;
    margin-right: 17px;
  }
  .hamburger_icon.show span:nth-of-type(1), .hamburger_icon.under span:nth-of-type(1) {
    margin-top: 3px;
  }
  .hamburger_icon.is-sp {
    display: block;
  }
  .hamburger_modal {
    padding: calc(71 / 375 * 100vw) calc(24 / 375 * 100vw) calc(96 / 375 * 100vw);
  }
  .hamburger_modal__item {
    font-size: calc(18 / 375 * 100vw);
    letter-spacing: 0.05em;
  }
  .hamburger_modal__item a img {
    margin-left: 5px;
  }
  .hamburger_modal__auth_btn a {
    font-size: calc(14 / 375 * 100vw);
    padding: calc(15 / 375 * 100vw) calc(27 / 375 * 100vw) calc(17 / 375 * 100vw);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hamburger_modal__auth_btn img {
    width: 20px;
    height: 20px;
  }
  .l-service {
    background: url("/assets/img/top/bg_feature_img02_sp.jpg") center center no-repeat;
    background-size: cover;
    padding: calc(40 / 375 * 100vw) calc(20 / 375 * 100vw) calc(45 / 375 * 100vw);
    border-radius: 8px;
  }
  .l-service--pb0 {
    padding: calc(44 / 375 * 100vw) calc(22 / 375 * 100vw) 0;
  }
  .l-service__title {
    margin-top: calc(4 / 375 * 100vw);
  }
  .l-service__title span {
    font-size: 2rem;
    line-height: 1.7;
  }
  .l-service__sub_title {
    font-size: 1rem;
  }
  .l-superiority {
    padding: calc(63 / 375 * 100vw) calc(16 / 375 * 100vw) calc(48 / 375 * 100vw);
    margin-top: calc(73 / 375 * 100vw);
    border-radius: 6px;
  }
  .l-superiority::before {
    right: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: calc(-33 / 375 * 100vw);
  }
  .l-superiority:nth-of-type(1)::before {
    width: calc(74 / 375 * 100vw);
    height: calc(70 / 375 * 100vw);
  }
  .l-superiority:nth-of-type(2)::before {
    width: calc(83 / 375 * 100vw);
    top: calc(-58 / 375 * 100vw);
  }
  .l-superiority + .l-superiority {
    margin-top: calc(84 / 375 * 100vw);
  }
  .l-superiority__title {
    padding-left: calc(10 / 375 * 100vw);
    padding-right: 0;
    font-size: 1.25rem;
  }
  .l-superiority__title::before {
    width: calc(11 / 375 * 100vw);
    height: calc(64 / 375 * 100vw);
    left: calc(-16 / 375 * 100vw);
  }
  .l-superiority__head {
    padding: calc(30 / 375 * 100vw) calc(0 / 375 * 100vw) calc(55 / 375 * 100vw);
    margin: 0;
    margin-top: calc(35 / 375 * 100vw);
    background: url("/assets/img/common/bg_particle_dark_sp.jpg") center center no-repeat;
    background-size: cover;
  }
  .l-superiority__head::before, .l-superiority__head::after {
    left: 47%;
    width: calc(21 / 375 * 100vw);
    height: calc(21 / 375 * 100vw);
    border-right: calc(4 / 375 * 100vw) solid #003289;
    border-bottom: calc(4 / 375 * 100vw) solid #003289;
  }
  .l-superiority__head:before {
    bottom: calc(-50 / 375 * 100vw);
  }
  .l-superiority__head::after {
    bottom: calc(-70 / 375 * 100vw);
  }
  .l-superiority__head--long {
    background: url("/assets/img/common/bg_particle_dark_long_sp.jpg") center center no-repeat;
    background-size: cover;
  }
  .l-superiority__lead {
    font-size: 1rem;
    padding-left: calc(13 / 375 * 100vw);
  }
  .l-superiority__foot {
    flex-direction: column;
    row-gap: calc(37 / 375 * 100vw);
    padding: 0;
    margin-top: calc(101 / 375 * 100vw);
  }
  .cases_detail_page .cases_detail_block__inner {
    padding: 0 calc(20 / 375 * 100vw);
  }
  .cases_detail_page .detail_case01 {
    padding: calc(38 / 375 * 100vw) calc(25 / 375 * 100vw) calc(28 / 375 * 100vw);
    margin: calc(34 / 375 * 100vw) 0 calc(60 / 375 * 100vw);
  }
  .cases_detail_page .detail_case01__label {
    font-size: 1.1875rem;
    width: calc(83 / 375 * 100vw);
  }
  .cases_detail_page .detail_case01__title {
    font-size: 1.5625rem;
    margin-top: calc(19 / 375 * 100vw);
  }
  .cases_detail_page .detail_case01__client {
    margin-top: calc(21 / 375 * 100vw);
    font-size: 0.875rem;
  }
  .cases_detail_page .detail_case01__client span {
    font-size: 0.875rem;
    margin-right: calc(6 / 375 * 100vw);
  }
  .cases_detail_page .detail_case01__img {
    margin-top: calc(26 / 375 * 100vw);
    max-width: calc(275 / 375 * 100vw);
    height: calc(316 / 375 * 100vw);
  }
  .cases_detail_page .detail_case01__img::before {
    display: none;
  }
  .cases_detail_page .detail_case01__img img {
    border-radius: 0;
  }
  .cases_detail_page .detail_problem {
    margin-top: calc(51 / 375 * 100vw);
    max-width: calc(255 / 375 * 100vw);
  }
  .cases_detail_page .detail_problem::before {
    top: calc(-3 / 375 * 100vw);
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: calc(72 / 375 * 100vw);
  }
  .cases_detail_page .detail_problem__title {
    top: calc(-33 / 375 * 100vw);
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    font-size: calc(20 / 375 * 100vw);
    line-height: 1.3;
  }
  .cases_detail_page .detail_problem__title span {
    font-size: calc(12 / 375 * 100vw);
  }
  .cases_detail_page .detail_problem__inner {
    flex-direction: column;
    row-gap: calc(16 / 375 * 100vw);
  }
  .cases_detail_page .detail_problem__text {
    padding: calc(18 / 375 * 100vw) calc(19 / 375 * 100vw) 0;
    font-size: calc(12 / 375 * 100vw);
    line-height: 1.85;
  }
  .cases_detail_page .detail_problem__img {
    position: relative;
    width: calc(90.5 / 375 * 100vw);
    margin: auto;
    right: 0;
  }
  .cases_detail_page .detail_contents {
    background: url("/assets/img/cases/detail/bg_cases_detail01_sp.jpg") center center no-repeat;
    background-size: cover;
    padding: calc(47 / 375 * 100vw) calc(20 / 375 * 100vw) calc(80 / 375 * 100vw);
  }
  .cases_detail_page .detail_contents__wrapper {
    padding: 0;
  }
  .cases_detail_page .detail_contents__wrapper + .detail_contents__wrapper {
    margin-top: calc(60 / 375 * 100vw);
  }
  .cases_detail_page .detail_contents__title {
    font-size: calc(23 / 375 * 100vw);
    padding-left: calc(21 / 375 * 100vw);
  }
  .cases_detail_page .detail_contents__title + .detail_contents__text {
    margin-top: calc(17 / 375 * 100vw);
  }
  .cases_detail_page .detail_contents__title span {
    font-size: calc(15 / 375 * 100vw);
  }
  .cases_detail_page .detail_contents__title::before {
    width: calc(7 / 375 * 100vw);
    height: calc(47 / 375 * 100vw);
    top: 58%;
  }
  .cases_detail_page .detail_contents__text {
    text-align: justify;
    font-size: calc(14 / 375 * 100vw);
    padding: 20px 0;
  }
  .cases_detail_page .detail_contents__img {
    margin-top: calc(26 / 375 * 100vw);
  }
  .cases_detail_page .detail_result_banner {
    margin-top: calc(31 / 375 * 100vw);
    flex-direction: column;
    row-gap: calc(20 / 375 * 100vw);
  }
  .cases_detail_page .detail_result_banner__list {
    padding: calc(25 / 375 * 100vw) calc(10 / 375 * 100vw) 0 calc(10 / 375 * 100vw);
  }
  .cases_detail_page .detail_result_banner__item {
    text-align: justify;
    line-height: 1.7;
    font-size: calc(14 / 375 * 100vw);
  }
  .cases_detail_page .detail_result_banner__item strong {
    font-size: calc(16 / 375 * 100vw);
    margin-left: 0;
  }
  .cases_detail_page .detail_result_banner__item + .detail_result_banner__item {
    margin-top: calc(13 / 375 * 100vw);
  }
  .cases_detail_page .detail_result_banner__img {
    max-width: calc(133 / 375 * 100vw);
    margin: auto;
  }
  .cases_detail_page .detail_other {
    background: url("/assets/img/cases/detail/bg_cases_detail02_sp.jpg") center center no-repeat;
    background-size: cover;
  }
  .cases_detail_page .detail_other__inner {
    padding: calc(46 / 375 * 100vw) calc(20 / 375 * 100vw) calc(60 / 375 * 100vw);
  }
  .cases_detail_page .detail_other__title {
    margin: auto;
    width: calc(135 / 375 * 100vw);
    font-size: 1.5rem;
    padding-bottom: calc(5 / 375 * 100vw);
  }
  .cases_detail_page .detail_other__list {
    grid-template-columns: repeat(1, 1fr);
    margin-top: calc(43 / 375 * 100vw);
    gap: calc(14 / 375 * 100vw);
  }
  .cases_detail_page .detail_other .detail_other_item__inner {
    padding: calc(9 / 375 * 100vw) 0 calc(13 / 375 * 100vw);
  }
  .cases_detail_page .detail_other .detail_other_item__label {
    font-size: 1rem;
    width: calc(70 / 375 * 100vw);
    padding-bottom: 0;
  }
  .cases_detail_page .detail_other .detail_other_item__title {
    font-size: 0.9375rem;
    margin-top: calc(7 / 375 * 100vw);
  }
  .index_page .mainvisual_block__texts {
    left: calc(24 / 375 * 100vw);
    bottom: calc(30 / 375 * 100vw);
  }
  .index_page .mainvisual_block__lead {
    font-size: 0.75rem;
  }
  .index_page .mainvisual_block__title--wide {
    max-width: calc(324 / 375 * 100vw);
  }
  .index_page .mainvisual_block__title {
    margin-top: calc(20 / 375 * 100vw);
  }
  .index_page .mainvisual_block__text {
    font-size: 0.875rem;
    line-height: 1.75;
    margin-top: calc(18 / 375 * 100vw);
  }
  .index_page .mainvisual_block .swiper-slide {
    height: calc(628 / 375 * 100vw);
  }
  .index_page .news_block__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: calc(50 / 375 * 100vw) calc(20 / 375 * 100vw) calc(78 / 375 * 100vw);
  }
  .index_page .news_block__list {
    margin-top: calc(13 / 375 * 100vw);
  }
  .index_page .news_block__item {
    font-size: calc(14 / 375 * 100vw);
    padding: calc(17 / 375 * 100vw) 0;
  }
  .index_page .news_block__item a {
    flex-direction: column;
    align-items: flex-start;
    row-gap: calc(4 / 375 * 100vw);
  }
  .index_page .news_block__item time {
    font-size: calc(14 / 375 * 100vw);
    letter-spacing: 0;
  }
  .index_page .news_block__item p {
    line-height: 1.8;
  }
  .index_page .news_block .atpress_title_list_frame {
    margin-bottom: 44px;
  }
  .index_page .news_block .atpress_title_frame {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 4px;
    font-size: calc(14 / 375 * 100vw);
  }
  .index_page .news_block .atpress_date_frame {
    letter-spacing: 0;
  }
  .index_page .news_block .atpress_title {
    font-size: calc(14 / 375 * 100vw);
    padding-left: 0;
  }
  .index_page .about_block__inner {
    padding: calc(50 / 375 * 100vw) calc(20 / 375 * 100vw) calc(44 / 375 * 100vw);
  }
  .index_page .about_block__foot_text {
    margin-top: calc(49 / 375 * 100vw);
    font-size: 1.625rem;
  }
  .index_page .about_block__foot_text span {
    font-size: calc(30 / 375 * 100vw);
  }
  .index_page .about_block .about_content {
    padding: calc(24 / 375 * 100vw) calc(20 / 375 * 100vw) calc(43 / 375 * 100vw);
    margin-top: calc(43 / 375 * 100vw);
  }
  .index_page .about_block .about_content::before {
    bottom: calc(-33 / 375 * 100vw);
    border: calc(12 / 375 * 100vw) solid transparent;
    border-top: calc(23 / 375 * 100vw) solid #fff;
  }
  .index_page .about_block .about_content__title {
    max-width: calc(267 / 375 * 100vw);
  }
  .index_page .about_block .about_content__img {
    margin-top: calc(27 / 375 * 100vw);
  }
  .index_page .about_block .about_content__lead_head {
    margin-top: calc(37 / 375 * 100vw);
  }
  .index_page .about_block .about_content__lead_head span {
    font-size: 1.25rem;
    line-height: 2;
  }
  .index_page .about_block .about_content__lead {
    font-size: 1.125rem;
    margin-top: calc(18 / 375 * 100vw);
  }
  .index_page .about_block .about_content__caption {
    flex-direction: column;
    align-items: center;
    row-gap: calc(57 / 375 * 100vw);
    margin-top: calc(28 / 375 * 100vw);
  }
  .index_page .about_block .about_content__caption_box {
    padding: calc(27 / 375 * 100vw) calc(13 / 375 * 100vw) calc(26 / 375 * 100vw);
  }
  .index_page .about_block .about_content__caption_box--narrow::after {
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(135deg);
            transform: translateX(-50%) rotate(135deg);
    top: auto;
    bottom: calc(-35 / 375 * 100vw);
  }
  .index_page .about_block .about_content__caption_box--wide::after {
    -webkit-transform: translate(-50%) rotate(135deg);
            transform: translate(-50%) rotate(135deg);
  }
  .index_page .about_block .about_content__caption_box {
    max-width: 100%;
  }
  .index_page .about_block .about_content__caption_title {
    font-size: calc(16 / 375 * 100vw);
  }
  .index_page .about_block .about_content__caption_img {
    margin-top: calc(31 / 375 * 100vw);
    max-width: calc(208 / 375 * 100vw);
  }
  .index_page .about_block .about_content__caption_list {
    flex-direction: column;
    align-items: center;
    row-gap: calc(51 / 375 * 100vw);
    margin-top: calc(-10 / 375 * 100vw);
  }
  .index_page .about_block .about_content__caption_item {
    width: 100%;
    margin-top: calc(18 / 375 * 100vw);
  }
  .index_page .about_block .about_content__caption_item img {
    max-width: calc(224 / 375 * 100vw);
    width: 100%;
    margin: auto;
  }
  .index_page .about_block .about_content__caption_text {
    margin-top: calc(15 / 375 * 100vw);
    font-size: calc(14 / 375 * 100vw);
  }
  .index_page .about_block .about_content__foot {
    flex-direction: column;
    align-items: center;
    margin-top: calc(44 / 375 * 100vw);
  }
  .index_page .about_block .about_content__foot_list {
    width: 100%;
    order: 2;
    margin-top: calc(28 / 375 * 100vw);
  }
  .index_page .about_block .about_content__foot_item {
    font-size: calc(14 / 375 * 100vw);
  }
  .index_page .about_block .about_content__foot_item::before {
    top: calc(4 / 375 * 100vw);
    width: calc(18 / 375 * 100vw);
    height: calc(18 / 375 * 100vw);
  }
  .index_page .about_block .about_content__foot_item--title {
    font-size: calc(15 / 375 * 100vw);
    white-space: nowrap;
  }
  .index_page .about_block .about_content__foot_img {
    width: calc(141 / 375 * 100vw);
    order: 1;
    margin-left: 0;
  }
  .index_page .about_block .about_content__foot_img + .about_content__foot_list {
    margin-left: 0;
    margin-top: calc(32 / 375 * 100vw);
  }
  .index_page .solution_block__inner {
    padding: calc(58 / 375 * 100vw) calc(20 / 375 * 100vw) 0;
  }
  .index_page .solution_block__title span {
    font-size: calc(16 / 375 * 100vw);
  }
  .index_page .solution_block__card_box {
    padding: calc(41 / 375 * 100vw) calc(23 / 375 * 100vw) calc(23 / 375 * 100vw);
    gap: calc(20 / 375 * 100vw);
    -webkit-text-emphasis: calc(-12 / 375 * 100vw);
            text-emphasis: calc(-12 / 375 * 100vw);
  }
  .index_page .solution_block__card {
    padding: calc(24 / 375 * 100vw) calc(10 / 375 * 100vw) calc(24 / 375 * 100vw);
  }
  .index_page .solution_block__card img {
    max-width: calc(99 / 375 * 100vw);
    width: 100%;
  }
  .index_page .solution_block__texts {
    margin-top: calc(27 / 375 * 100vw);
  }
  .index_page .solution_block__label {
    font-size: calc(40 / 375 * 100vw);
    font-family: "Inter";
  }
  .index_page .solution_block__text {
    font-size: calc(14 / 375 * 100vw);
    margin-left: calc(13 / 375 * 100vw);
    padding-left: calc(16 / 375 * 100vw);
  }
  .index_page .solution_block__img {
    max-width: calc(333 / 375 * 100vw);
    margin-top: calc(39 / 375 * 100vw);
    width: 100%;
  }
  .index_page .feature_block::before {
    height: calc(433 / 375 * 100vw);
    background: url("/assets/img/top/bg_feature_img01_sp.jpg") center center no-repeat;
    background-size: cover;
  }
  .index_page .feature_block__inner {
    padding: calc(55 / 375 * 100vw) calc(20 / 375 * 100vw) calc(88 / 375 * 100vw);
  }
  .index_page .feature_block .feature_content01 {
    flex-direction: column;
    row-gap: calc(78 / 375 * 100vw);
    margin-top: calc(45 / 375 * 100vw);
    padding: calc(16 / 375 * 100vw);
  }
  .index_page .feature_block .feature_content01__left {
    padding: calc(30 / 375 * 100vw) calc(24 / 375 * 100vw) calc(36 / 375 * 100vw);
  }
  .index_page .feature_block .feature_content01__left::before, .index_page .feature_block .feature_content01__left::after {
    width: calc(21 / 375 * 100vw);
    height: calc(21 / 375 * 100vw);
    border-top: 0px solid #000;
    border-right: calc(4 / 375 * 100vw) solid #003289;
    border-bottom: calc(4 / 375 * 100vw) solid #003289;
    right: 47%;
    top: auto;
    -webkit-transform: translate(0) rotate(45deg);
            transform: translate(0) rotate(45deg);
  }
  .index_page .feature_block .feature_content01__left:before {
    bottom: calc(-33 / 375 * 100vw);
  }
  .index_page .feature_block .feature_content01__left::after {
    bottom: calc(-55 / 375 * 100vw);
  }
  .index_page .feature_block .feature_content01__left img {
    max-width: calc(167 / 375 * 100vw);
    width: 100%;
    margin-top: calc(35 / 375 * 100vw);
  }
  .index_page .feature_block .feature_content01__title span {
    padding-bottom: calc(7 / 375 * 100vw);
  }
  .index_page .feature_block .feature_content01__title {
    font-size: 1.125rem;
    font-weight: 700;
  }
  .index_page .feature_block .feature_content01__title--emphasis {
    font-size: 1.25rem;
    font-weight: 700;
  }
  .index_page .feature_block .feature_content01__list {
    margin-top: calc(28 / 375 * 100vw);
  }
  .index_page .feature_block .feature_content01__item {
    font-size: calc(14 / 375 * 100vw);
  }
  .index_page .feature_block .feature_content01__item + .feature_content01__item {
    margin-top: calc(6 / 375 * 100vw);
  }
  .index_page .feature_block .feature_content01__item + .feature_content01__item--large {
    margin-top: 0;
  }
  .index_page .feature_block .feature_content01__item--large {
    font-size: calc(18 / 375 * 100vw);
  }
  .index_page .feature_block .feature_content01__right {
    padding: 0;
  }
  .index_page .feature_block .feature_content01__box {
    margin-top: calc(24 / 375 * 100vw);
  }
  .index_page .feature_block .feature_content01__img {
    max-width: calc(303 / 375 * 100vw);
  }
  .index_page .feature_block .feature_content02 {
    margin-top: calc(48 / 375 * 100vw);
  }
  .index_page .feature_block .feature_content02 img {
    width: 100%;
    margin-top: calc(33 / 375 * 100vw);
  }
  .index_page .superiority_block__inner {
    padding: calc(50 / 375 * 100vw) calc(20 / 375 * 100vw) calc(88 / 375 * 100vw);
  }
  .index_page .superiority_block__img {
    max-width: 100%;
  }
  .index_page .superiority_block .superiority_service {
    margin-top: calc(64 / 375 * 100vw);
  }
  .index_page .superiority_block .superiority_service__img {
    margin-top: calc(32 / 375 * 100vw);
    border-radius: 6px;
  }
  .index_page .superiority_block .superiority_service__list {
    margin-top: calc(36 / 375 * 100vw);
    grid-template-columns: repeat(1, 1fr);
    padding: calc(32 / 375 * 100vw) calc(21 / 375 * 100vw);
    gap: calc(16 / 375 * 100vw) 0;
  }
  .index_page .superiority_block .superiority_service__item + .superiority_service__item {
    margin-top: calc(11 / 375 * 100vw);
  }
  .index_page .superiority_block .superiority_service__title {
    font-size: calc(20 / 375 * 100vw);
  }
  .index_page .superiority_block .superiority_service__text {
    font-size: calc(13 / 375 * 100vw);
    padding-left: 0;
    margin-top: calc(9 / 375 * 100vw);
  }
  .index_page .superiority_block .superiority_service__img_foot {
    margin-top: calc(40 / 375 * 100vw);
    max-width: calc(271 / 375 * 100vw);
  }
  .index_page .superiority_block .superiority_module {
    padding: calc(25 / 375 * 100vw) calc(20 / 375 * 100vw) calc(45 / 375 * 100vw);
  }
  .index_page .superiority_block .superiority_module__title {
    font-size: calc(20 / 375 * 100vw);
    line-height: 1.6;
  }
  .index_page .superiority_block .superiority_module__contents {
    margin-top: calc(34 / 375 * 100vw);
    gap: calc(30 / 375 * 100vw);
  }
  .index_page .superiority_block .superiority_module__card {
    flex-direction: column;
    row-gap: calc(30 / 375 * 100vw);
    padding: calc(39 / 375 * 100vw) calc(20 / 375 * 100vw) calc(24 / 375 * 100vw);
  }
  .index_page .superiority_block .superiority_module__card:nth-of-type(1) .superiority_module__img {
    max-width: calc(157 / 375 * 100vw);
  }
  .index_page .superiority_block .superiority_module__card:nth-of-type(2) .superiority_module__img {
    max-width: calc(144 / 375 * 100vw);
  }
  .index_page .superiority_block .superiority_module__card:nth-of-type(3) {
    padding: calc(32 / 375 * 100vw) calc(20 / 375 * 100vw) calc(24 / 375 * 100vw);
  }
  .index_page .superiority_block .superiority_module__card:nth-of-type(3) .superiority_module__img {
    max-width: calc(102 / 375 * 100vw);
  }
  .index_page .superiority_block .superiority_module__card:nth-of-type(4) {
    padding: calc(32 / 375 * 100vw) calc(20 / 375 * 100vw) calc(24 / 375 * 100vw);
  }
  .index_page .superiority_block .superiority_module__card:nth-of-type(4) .superiority_module__img {
    max-width: calc(93 / 375 * 100vw);
  }
  .index_page .superiority_block .superiority_module__img {
    margin: auto;
  }
  .index_page .superiority_block .superiority_module__list {
    max-width: calc(202 / 375 * 100vw);
  }
  .index_page .superiority_block .superiority_module__item {
    font-size: calc(14 / 375 * 100vw);
  }
  .index_page .superiority_block .superiority_module__item + .superiority_module__item {
    margin-top: calc(14 / 375 * 100vw);
  }
  .index_page .superiority_block .superiority_module__item + .superiority_module__item--mt_narrow {
    margin-top: calc(3 / 375 * 100vw);
  }
  .index_page .superiority_block .superiority_module__text {
    font-size: calc(14 / 375 * 100vw);
    max-width: calc(202 / 375 * 100vw);
  }
  .index_page .strength_block::before {
    background: url("/assets/img/top/bg_strength_sp.jpg") center center no-repeat;
    background-size: cover;
    height: calc(433 / 375 * 100vw);
  }
  .index_page .strength_block__inner {
    padding: calc(55 / 375 * 100vw) calc(20 / 375 * 100vw) calc(88 / 375 * 100vw);
  }
  .index_page .strength_block__content {
    padding: calc(11 / 375 * 100vw) calc(19 / 375 * 100vw) calc(44 / 375 * 100vw);
    margin-top: calc(45 / 375 * 100vw);
    background: url("/assets/img/common/bg_particle_light_sp.jpg") center center no-repeat;
    background-size: cover;
  }
  .index_page .strength_block__head {
    flex-direction: column;
    row-gap: calc(18 / 375 * 100vw);
  }
  .index_page .strength_block__list {
    max-width: 100%;
  }
  .index_page .strength_block__item {
    flex-direction: column;
    align-items: center;
    padding: calc(24 / 375 * 100vw) 0;
  }
  .index_page .strength_block__label {
    font-size: calc(58 / 375 * 100vw);
    text-align: center;
  }
  .index_page .strength_block__lead {
    text-align: center;
    font-size: calc(16 / 375 * 100vw);
    margin-top: calc(8 / 375 * 100vw);
  }
  .index_page .strength_block__title {
    text-align: center;
    font-size: calc(24 / 375 * 100vw);
    margin-top: calc(4 / 375 * 100vw);
    line-height: 1.6;
  }
  .index_page .strength_block__head_img {
    margin-top: calc(7 / 375 * 100vw);
    width: calc(295 / 375 * 100vw);
  }
  .index_page .strength_block__img {
    width: calc(270 / 375 * 100vw);
    margin-top: calc(12 / 375 * 100vw);
  }
  .index_page .strength_block__flow {
    margin-top: calc(53 / 375 * 100vw);
  }
  .index_page .strength_block__flow_img {
    width: 100%;
    margin-top: calc(31 / 375 * 100vw);
  }
  .index_page .companies_block {
    padding: calc(60 / 375 * 100vw) 0 calc(10 / 375 * 100vw);
    margin-top: 0;
  }
  .index_page .companies_block__img_box + .companies_block__img_box {
    margin-top: 0;
  }
  .index_page .companies_block__img_box {
    width: 180%;
  }
  .index_page .companies_block__img_box.is-pc {
    display: none;
  }
  .index_page .companies_block__img_box.is-sp {
    display: flex;
  }
  .index_page .products_block::before {
    background: url("/assets/img/top/bg_products_sp.png") center center no-repeat;
    background-size: cover;
  }
  .index_page .products_block__inner {
    padding: calc(50 / 375 * 100vw) calc(20 / 375 * 100vw) calc(88 / 375 * 100vw);
  }
  .index_page .cases_block__inner {
    padding: calc(60 / 375 * 100vw) calc(20 / 375 * 100vw) calc(78 / 375 * 100vw);
  }
  .index_page .cases_block .cases-swiper + .c-btn {
    margin-top: calc(61 / 375 * 100vw);
  }
  .index_page .ceo_message_block__inner::before {
    width: calc(316 / 375 * 100vw);
    height: calc(90 / 375 * 100vw);
    right: calc(-64 / 375 * 100vw);
    top: calc(198 / 375 * 100vw);
  }
  .index_page .ceo_message_block__inner {
    padding: calc(50 / 375 * 100vw) calc(20 / 375 * 100vw) calc(68 / 375 * 100vw);
  }
  .index_page .ceo_message_block__content {
    flex-direction: column;
    margin-top: calc(297 / 375 * 100vw);
    row-gap: calc(37 / 375 * 100vw);
    padding: 0 calc(20 / 375 * 100vw) calc(44 / 375 * 100vw);
  }
  .index_page .ceo_message_block__img {
    max-width: calc(295 / 375 * 100vw);
    margin-top: calc(-204 / 375 * 100vw);
  }
  .index_page .ceo_message_block__title {
    font-size: calc(24 / 375 * 100vw);
  }
  .index_page .ceo_message_block__title::before, .index_page .ceo_message_block__title::after {
    width: calc(28 / 375 * 100vw);
    height: calc(22 / 375 * 100vw);
  }
  .index_page .ceo_message_block__title::before {
    top: calc(-7 / 375 * 100vw);
    left: calc(21 / 375 * 100vw);
  }
  .index_page .ceo_message_block__title::after {
    right: calc(21 / 375 * 100vw);
  }
  .index_page .ceo_message_block__text {
    font-size: calc(14 / 375 * 100vw);
    margin-top: calc(23 / 375 * 100vw);
  }
  .index_page .ceo_message_block__name {
    font-size: calc(14 / 375 * 100vw);
  }
  .index_page .ceo_message_block__name span {
    font-size: calc(20 / 375 * 100vw);
  }
  .index_page .profile_block__img {
    width: calc(335 / 375 * 100vw);
    top: calc(221 / 375 * 100vw);
  }
  .index_page .profile_block__inner {
    padding: calc(50 / 375 * 100vw) calc(20 / 375 * 100vw) calc(80 / 375 * 100vw);
  }
  .index_page .profile_block__content {
    margin-top: calc(142 / 375 * 100vw);
    padding: calc(85 / 375 * 100vw) calc(20 / 375 * 100vw) calc(44 / 375 * 100vw);
    border-radius: 6px;
    gap: calc(36 / 375 * 100vw);
  }
  .index_page .profile_block__tr::before {
    width: calc(96 / 375 * 100vw);
  }
  .index_page .profile_block__th {
    font-size: calc(14 / 375 * 100vw);
    display: block;
    padding-top: calc(24 / 375 * 100vw);
  }
  .index_page .profile_block__td {
    font-size: calc(14 / 375 * 100vw);
    padding: calc(7 / 375 * 100vw) 0 calc(17 / 375 * 100vw) 0;
  }
  .index_page .profile_block__map {
    padding-top: 70%;
  }
  .index_page .profile_block__map_text {
    font-size: calc(12 / 375 * 100vw);
  }
  .index_page .recruit_block__inner {
    flex-direction: column;
    row-gap: calc(24 / 375 * 100vw);
    padding: calc(52 / 375 * 100vw) calc(20 / 375 * 100vw) calc(80 / 375 * 100vw);
  }
  .index_page .recruit_block__banner {
    margin: 0;
    padding: calc(36 / 375 * 100vw) calc(40 / 375 * 100vw) calc(33 / 375 * 100vw) calc(22 / 375 * 100vw);
  }
  .index_page .recruit_block__banner::after {
    background: url("/assets/img/top/pic_recruit_banner_sp.jpg") center center no-repeat;
    background-size: cover;
  }
  .index_page .recruit_block__banner::before {
    width: calc(28 / 375 * 100vw);
    height: calc(28 / 375 * 100vw);
    right: 23px;
  }
  .index_page .recruit_block__label {
    font-size: calc(13 / 375 * 100vw);
  }
  .index_page .recruit_block__title {
    font-size: calc(20 / 375 * 100vw);
    margin-top: calc(6 / 375 * 100vw);
  }
  .index_page .scroll_top {
    width: calc(46 / 375 * 100vw);
    height: calc(46 / 375 * 100vw);
    right: calc(26 / 375 * 100vw);
    bottom: calc(62 / 375 * 100vw);
  }
  .list_page {
    padding-bottom: calc(80 / 375 * 100vw);
  }
  .list_page .c-card .c-btn__category {
    font-style: normal;
    font-weight: 400;
    font-size: 0.625rem;
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: capitalize;
    padding: calc(4 / 375 * 100vw) calc(18 / 375 * 100vw) calc(5 / 375 * 100vw);
  }
  .news_page .news_block__inner {
    padding: 0 calc(20 / 375 * 100vw) calc(80 / 375 * 100vw);
  }
  .news_page .news_block__inner--wide {
    padding: 0 calc(20 / 375 * 100vw) calc(80 / 375 * 100vw);
  }
  .news_page .news_block__wrapper {
    width: 100%;
    flex-direction: column;
    padding-top: calc(39 / 375 * 100vw);
  }
  .news_page .news_block__wrapper--narrow {
    padding: calc(53 / 375 * 100vw) calc(10 / 375 * 100vw) 0;
  }
  .news_page .news_block__wrapper + .c-pagination {
    margin-top: calc(100 / 375 * 100vw);
  }
  .news_page .news_block .news_list__item {
    flex-direction: column;
    align-items: flex-start;
  }
  .news_page .news_block .news_list__time {
    font-size: calc(14 / 375 * 100vw);
  }
  .news_page .news_block .news_list__text {
    padding-left: 0;
    font-size: calc(13 / 375 * 100vw);
  }
  .news_page .news_block .news_wrapper {
    flex-direction: column;
  }
  .news_page .news_content + .c-btn {
    margin-top: calc(75 / 375 * 100vw);
  }
  .news_page .news_content__title + .news_list__head {
    margin-top: calc(17 / 375 * 100vw);
  }
  .news_page .news_content__title {
    font-size: 1.125rem;
    line-height: 1.6;
  }
  .news_page .news_content__img {
    margin-top: calc(30 / 375 * 100vw);
  }
  .news_page .news_content__text {
    margin-top: calc(25 / 375 * 100vw);
    font-size: 0.8125rem;
  }
  .news_page .news_content__text + .news_content__text {
    margin-top: calc(28 / 375 * 100vw);
  }
  .news_page .news_content__text + .c-btn {
    margin-top: calc(80 / 375 * 100vw);
  }
  .news_page .news_past {
    position: static;
    top: auto;
    margin-top: calc(90 / 375 * 100vw);
  }
  .news_page .news_past__head {
    font-size: calc(14 / 375 * 100vw);
    padding-bottom: calc(11 / 375 * 100vw);
    display: inline-block;
  }
  .news_page .news_past__list {
    margin-top: calc(26 / 375 * 100vw);
    display: flex;
    flex-wrap: wrap;
    gap: calc(16 / 375 * 100vw) calc(36 / 375 * 100vw);
  }
  .news_page .news_past__item {
    font-size: calc(16 / 375 * 100vw);
    min-width: calc(42 / 375 * 100vw);
  }
  .news_page .news_past__item + .news_past__item {
    margin-top: 0;
  }
  .news_page .news {
    padding-top: 0;
  }
  .news_page .news-back a {
    margin-top: 20px;
  }
  .news_page .news .atpress_pr_body p {
    font-weight: 400;
    font-size: 13px;
    line-height: 2;
    text-align: justify;
    letter-spacing: 0.03em;
  }
}

@media only screen and (max-width: 767px) {
  .news_page .news .atpress_pr_title,
  .news_page .news .atpress_title {
    font-size: 14px;
  }
  .news_page .news .atpress_pr_body {
    margin: 30px 0 0;
    font-size: 14px;
  }
  .news_page .news-menu {
    float: none;
  }
  .news_page .news-years a {
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
  }
  .news_page .news-years a.current {
    border-bottom-color: #000;
  }
  .news_page .news-years li {
    float: left;
    width: 25%;
    text-align: center;
  }
  .news_page .news-list {
    margin: 0 0 30px;
  }
  .news_page .news-back {
    width: auto;
  }
  .news_page .news-back img {
    width: 31px;
    padding: 0 10px 0 0;
  }
  .news_page .news #atpress_pr_space {
    margin: 25px 0 0;
  }
  .news_page .news .atpress_pr_title {
    display: block;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: 0.03em;
    color: #222222;
    width: 100%;
    margin: 10px 0 0;
  }
  .news_page .news .atpress_title {
    font-size: 14px;
  }
  .news_page .news .atpress_pr_body {
    margin: 0;
    font-size: 14px;
  }
  .news_page .news .atpress_pr_body .img {
    margin-top: 30px;
  }
  .news_page .contact {
    margin: 0 0 50px;
  }
  .news_page .contact-2colWrap {
    padding-right: 0;
  }
  .news_page .contact-txt {
    font-size: 14px;
  }
}

@media only screen and (max-width: 767px) and (max-width: 769px) {
  .news_page .news .atpress_title {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: 0.03em;
  }
}

@media screen and (max-width: 320px) {
  .is-sp-s {
    display: block;
  }
}

@media (hover: hover) and (pointer: fine) {
  .c-btn a:hover::before {
    background: url("/assets/img/common/ico_btn_arrow_blue.svg") center center no-repeat;
    background-size: contain;
  }
  .c-btn a:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-animation: btnSlide 0.4s ease;
            animation: btnSlide 0.4s ease;
  }
  @-webkit-keyframes btnSlide {
    0% {
      -webkit-transform: scale(0, 1);
              transform: scale(0, 1);
    }
    100% {
      -webkit-transform: scale(1, 1);
              transform: scale(1, 1);
    }
  }
  @keyframes btnSlide {
    0% {
      -webkit-transform: scale(0, 1);
              transform: scale(0, 1);
    }
    100% {
      -webkit-transform: scale(1, 1);
              transform: scale(1, 1);
    }
  }
  .c-btn__category--hover:hover {
    line-height: 1;
    text-transform: capitalize;
    background: linear-gradient(105.67deg, #063A77 18.64%, #7344D5 123.93%);
    -webkit-background-clip: border-box;
    -webkit-text-fill-color: currentcolor;
    background-clip: border-box;
    text-decoration: none;
    color: #FFFFFF;
  }
  .c-card:hover .c-card__img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .c-card:hover .c-card__title {
    opacity: 0.8;
  }
  .c-card:hover .c-card__text {
    opacity: 0.8;
  }
  .c-form .c-form_item__main .c-form_submit input:hover {
    background: #1ed2a8;
  }
  .footer_block .footer_privacy:hover {
    opacity: 0.8;
  }
  .footer_block .footer_sns__item:hover {
    opacity: 0.8;
  }
  .header_block__logo:hover {
    opacity: 0.8;
  }
  .header_block__item:hover {
    opacity: 0.8;
  }
  .header_block__item--btn:hover {
    opacity: 1;
    background: #fff;
    color: #183973;
  }
  .header_recruit_block .header_block__item:hover {
    opacity: 0.3;
  }
  .cases_detail_page .detail_other .detail_other_item__inner:hover {
    background: rgba(90, 77, 187, 0.1);
  }
  .index_page .news_block__item a:hover {
    color: #003289;
  }
  .index_page .news_block .atpress_title:hover {
    color: #003289;
    transition: color 0.2s ease-in-out;
  }
  .index_page .profile_block__map_text:hover {
    opacity: 0.8;
  }
  .news_page .news_past__item:hover {
    opacity: 0.8;
  }
}

@media (prefers-reduced-motion: no-preference) {
  html:focus-within {
    scroll-behavior: smooth;
  }
  :focus-visible {
    transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
  }
  :where(:not(:active)):focus-visible {
    transition-duration: 0.25s;
  }
}