@charset "UTF-8";
/** --------------------------------
 * – Safari安全版ユーティリティ
 * 変更点:
 * - calc(px/px*vw) を全廃 → 比率をSassで無次元化してから 100vw を掛ける
 * - @use "sass:math" / math.div() を使用
 * - メディアクエリの記述整理
 * - 重複mixin名を解消
 */
/* =========================================================
 * 基本設定
 * ======================================================= */
/* =========================================================
 * ユーティリティ関数
 * ======================================================= */
/* Sassにstrip-unit()はありますが、既存互換で残します */
/* 単位取得（既存互換） */
/* px値 → 比率 → calc(100vw * ratio) を返す汎用ヘルパ */
/* rem/px を vw に変換（基準: $base-vw、デフォルト$viewport） */
/* html のフォントサイズ（10pxを基準幅に対して可変） */
/* ルートサイズ(10px)を基準に、最大$max(px)でclamp */
/* get_vw 簡易関数（px指定→vw）。引数はpx相当の数値でもpxでもOK */
/* レスポンシブ値(SP/PC/PC上限付き) */
/* 行間（既存名を尊重：スペルは lineHight のまま） */
/* =========================================================
 * メディアクエリ
 * ======================================================= */
/* もしSPXを別閾値にしたいなら幅を変える */
/* =========================================================
 * レイアウト系mixin
 * ======================================================= */
/* ★ 重複名を解消：元の2つを用途で分離 */
/* =========================================================
 * フォント系mixin
 * （root html を 10px 可変にする想定）
 * ======================================================= */
/*
Theme Name: 
*/
html {
  font-size: calc(100vw * 0.0078125);
} /* 必要に応じて基準幅変更 */
.algorithm-lab-page section[id] {
  scroll-margin-top: min(100vw * 0.0264550265, 48.1481481481px);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-page section[id] {
    scroll-margin-top: calc(100vw * 0.0934579439);
  }
}

.algorithm-lab-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: min(100vw * 0.0793650794, 144.4444444444px);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-header {
    height: calc(100vw * 0.1331775701);
    background: #fff;
    z-index: 1000;
  }
}
@media screen and (max-width: 1100px) and (min-width: 768px) {
  .algorithm-lab-header .algorithm-lab-header__nav {
    gap: min(100vw * 0.0079365079, 14.4444444444px);
  }
  .algorithm-lab-header .algorithm-lab-header__nav-link {
    font-size: min(100vw * 0.0066137566, 12.037037037px);
  }
}
.algorithm-lab-header .algorithm-lab-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 0 min(100vw * 0.0158730159, 28.8888888889px);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-header .algorithm-lab-header__inner {
    padding: 0 calc(100vw * 0.035046729);
  }
}
.algorithm-lab-header .algorithm-lab-header__logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(100vw * 0.1587301587, 288.8888888889px);
  text-decoration: none;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-header .algorithm-lab-header__logo {
    width: calc(100vw * 0.4065420561);
  }
}
.algorithm-lab-header .algorithm-lab-header__logo-image {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-header .algorithm-lab-header__logo-image {
    mix-blend-mode: normal;
  }
}
.algorithm-lab-header .algorithm-lab-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(100vw * 0.0158730159, 28.8888888889px);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-header .algorithm-lab-header__nav {
    display: none;
  }
}
.algorithm-lab-header .algorithm-lab-header__nav-link {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(100vw * 0.0105820106, 19.2592592593px);
  font-weight: 700;
  line-height: 1.5;
  color: #293c54;
  text-decoration: none;
  white-space: nowrap;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.algorithm-lab-header .algorithm-lab-header__nav-link:hover {
  opacity: 0.68;
}
.algorithm-lab-header .algorithm-lab-header__cta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: min(100vw * 0.1084656085, 197.4074074074px);
  min-height: min(100vw * 0.0396825397, 72.2222222222px);
  padding: min(100vw * 0.0066137566, 12.037037037px) min(100vw * 0.0099206349, 18.0555555556px);
  background: #B83A37;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(100vw * 0.0099206349, 18.0555555556px);
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.algorithm-lab-header .algorithm-lab-header__cta:hover {
  background: #c92f28;
}
.algorithm-lab-header .algorithm-lab-header__menu-button {
  display: none;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-header .algorithm-lab-header__menu-button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: calc(100vw * 0.0140186916);
    width: calc(100vw * 0.0700934579);
    height: calc(100vw * 0.0654205607);
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
  }
}
.algorithm-lab-header .algorithm-lab-header__menu-line {
  display: block;
  width: calc(100vw * 0.0700934579);
  height: calc(100vw * 0.0093457944);
  background: #293c54;
  border-radius: calc(100vw * 0.0046728972);
}

.algorithm-lab-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  width: calc(100vw * 0.5420560748);
  height: 100vh;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: opacity 0.25s ease, visibility 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, visibility 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
}
@media screen and (min-width: 768px) {
  .algorithm-lab-drawer {
    display: none;
  }
}
.algorithm-lab-drawer.mobile-menu--open {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.algorithm-lab-drawer .algorithm-lab-drawer__inner {
  position: relative;
  min-height: 100%;
  padding: calc(100vw * 0.1822429907) calc(100vw * 0.0537383178) calc(100vw * 0.0747663551) calc(100vw * 0.0794392523);
}
.algorithm-lab-drawer .algorithm-lab-drawer__close {
  position: absolute;
  top: calc(100vw * 0.0397196262);
  right: calc(100vw * 0.046728972);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(100vw * 0.0140186916);
  width: calc(100vw * 0.0700934579);
  height: calc(100vw * 0.0654205607);
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.algorithm-lab-drawer .algorithm-lab-drawer__close-line {
  display: block;
  width: calc(100vw * 0.0700934579);
  height: calc(100vw * 0.0093457944);
  background: #293c54;
  border-radius: calc(100vw * 0.0046728972);
}
.algorithm-lab-drawer .algorithm-lab-drawer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.algorithm-lab-drawer .algorithm-lab-drawer__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: calc(100vw * 0.1168224299);
  border-bottom: 1px solid #d7d7d7;
  color: #111;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(100vw * 0.035046729);
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
}
.algorithm-lab-drawer .algorithm-lab-drawer__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: calc(100vw * 0.3831775701);
  min-height: calc(100vw * 0.1378504673);
  margin-top: calc(100vw * 0.0607476636);
  background: #df382f;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(100vw * 0.035046729);
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  text-decoration: none;
}

.is-algorithm-lab-page > .footer {
  display: none;
}

.algorithm-lab-page {
  --lab-navy: #324662;
  --lab-dark: #111827;
  --lab-red: #df382f;
  --lab-blue-bg: #e8f2fc;
  --lab-soft-bg: #f4f7fb;
  --lab-line: #d7dfe8;
  --lab-inner: min(85.1851851852vw, 1288px);
  overflow: hidden;
  background: #fff;
  color: var(--lab-dark);
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-page {
    --lab-inner: calc(100vw - 44px);
  }
}
.algorithm-lab-page .inner {
  width: var(--lab-inner);
  max-width: none;
  margin: 0 auto;
  padding: 0;
}
.algorithm-lab-page h1, .algorithm-lab-page h2, .algorithm-lab-page h3, .algorithm-lab-page p, .algorithm-lab-page dl, .algorithm-lab-page dd {
  margin: 0;
}

.algorithm-lab-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(100vw * 0.0158730159, 28.8888888889px);
  width: min(100vw * 0.3253968254, 592.2222222222px);
  min-height: min(100vw * 0.0582010582, 105.9259259259px);
  padding: min(100vw * 0.0158730159, 28.8888888889px);
  background: var(--lab-red);
  color: #fff;
  font-size: min(100vw * 0.0119047619, 21.6666666667px);
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
  border-radius: 4px;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-button {
    width: 100%;
    min-height: calc(100vw * 0.1682242991);
    padding: calc(100vw * 0.0560747664);
    gap: calc(100vw * 0.0560747664);
    background: #d1392e;
    font-size: calc(100vw * 0.0373831776);
    line-height: calc(100vw * 0.0934579439);
  }
}
.algorithm-lab-button > span:first-child {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  text-align: center;
}
.algorithm-lab-button:hover {
  background: #c92f28;
}

.algorithm-lab-button__arrow {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: min(100vw * 0.0297619048, 54.1666666667px);
  height: min(100vw * 0.0191798942, 34.9074074074px);
  border-radius: 4px;
  background: #bb291e;
  top: min(100vw * 0.0013227513, 2.4074074074px);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-button__arrow {
    width: calc(100vw * 0.1051401869);
    height: calc(100vw * 0.0677570093);
  }
}
.algorithm-lab-button__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(100vw * 0.0119047619, 21.6666666667px);
  height: min(100vw * 0.005952381, 10.8333333333px);
  background: #D3DAE8;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='9' viewBox='0 0 18 9' fill='none'%3E%3Cpath d='M12.4779 2.78645H0.476953C0.213556 2.78645 0 3.00001 0 3.26341V5.48919C0 5.75258 0.213556 5.96614 0.476953 5.96614H12.4779V7.7968C12.4779 8.64665 13.5054 9.07225 14.1063 8.47133L17.5269 5.05083C17.8994 4.67829 17.8994 4.07431 17.5269 3.70181L14.1063 0.2813C13.5054 -0.319621 12.4779 0.10598 12.4779 0.95583V2.78645Z' fill='%23D3DAE8'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='9' viewBox='0 0 18 9' fill='none'%3E%3Cpath d='M12.4779 2.78645H0.476953C0.213556 2.78645 0 3.00001 0 3.26341V5.48919C0 5.75258 0.213556 5.96614 0.476953 5.96614H12.4779V7.7968C12.4779 8.64665 13.5054 9.07225 14.1063 8.47133L17.5269 5.05083C17.8994 4.67829 17.8994 4.07431 17.5269 3.70181L14.1063 0.2813C13.5054 -0.319621 12.4779 0.10598 12.4779 0.95583V2.78645Z' fill='%23D3DAE8'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-button__arrow::after {
    width: calc(100vw * 0.0420560748);
    height: calc(100vw * 0.0210280374);
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.algorithm-lab-case__title,
.algorithm-lab-section-heading__title,
.algorithm-lab-member__title,
.algorithm-lab-steps__title,
.algorithm-lab-alliance__title,
.algorithm-lab-news__title,
.algorithm-lab-faq__title,
.algorithm-lab-download__title,
.algorithm-lab-loogia__title,
.algorithm-lab-company__title,
.algorithm-lab-shareholders__title {
  position: relative;
  -ms-flex-item-align: start;
      align-self: start;
  padding-bottom: min(100vw * 0.0119047619, 21.6666666667px);
  white-space: nowrap;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-case__title,
  .algorithm-lab-section-heading__title,
  .algorithm-lab-member__title,
  .algorithm-lab-steps__title,
  .algorithm-lab-alliance__title,
  .algorithm-lab-news__title,
  .algorithm-lab-faq__title,
  .algorithm-lab-download__title,
  .algorithm-lab-loogia__title,
  .algorithm-lab-company__title,
  .algorithm-lab-shareholders__title {
    padding-bottom: calc(100vw * 0.0420560748);
  }
}

.algorithm-lab-case__title::after,
.algorithm-lab-section-heading__title::after,
.algorithm-lab-member__title::after,
.algorithm-lab-steps__title::after,
.algorithm-lab-alliance__title::after,
.algorithm-lab-news__title::after,
.algorithm-lab-faq__title::after,
.algorithm-lab-download__title::after,
.algorithm-lab-loogia__title::after,
.algorithm-lab-company__title::after,
.algorithm-lab-shareholders__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: min(100vw * 0.0727513228, 132.4074074074px);
  height: min(100vw * 0.0033068783, 6.0185185185px);
  background: -webkit-gradient(linear, left top, right top, color-stop(60%, #2B3F5C), color-stop(60%, #B83A37));
  background: linear-gradient(90deg, #2B3F5C 60%, #B83A37 60%);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-case__title::after,
  .algorithm-lab-section-heading__title::after,
  .algorithm-lab-member__title::after,
  .algorithm-lab-steps__title::after,
  .algorithm-lab-alliance__title::after,
  .algorithm-lab-news__title::after,
  .algorithm-lab-faq__title::after,
  .algorithm-lab-download__title::after,
  .algorithm-lab-loogia__title::after,
  .algorithm-lab-company__title::after,
  .algorithm-lab-shareholders__title::after {
    width: calc(100vw * 0.2570093458);
    height: calc(100vw * 0.011682243);
  }
}

.algorithm-lab-hero {
  min-height: min(100vw * 0.5, 910px);
  background: url("../img/lp/kv_pc.png") center/cover no-repeat;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-hero {
    min-height: 0;
    background: url("../img/lp/kv_sp.png") center/cover no-repeat;
  }
}
.algorithm-lab-hero .algorithm-lab-hero__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: min(100vw * 0.119047619, 216.6666666667px);
  padding-bottom: min(100vw * 0.0595238095, 108.3333333333px);
  width: min(100vw * 0.8518518519, 1550.3703703704px);
  margin: 0 auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-hero .algorithm-lab-hero__inner {
    display: block;
    width: calc(100vw - 40px);
    max-width: 390px;
    padding-top: calc(100vw * 0.1985981308);
    padding-bottom: calc(100vw * 0.1331775701);
  }
}
.algorithm-lab-hero .algorithm-lab-hero__left {
  width: min(100vw * 0.3571428571, 650px);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-hero .algorithm-lab-hero__left {
    width: 100%;
  }
}
.algorithm-lab-hero .algorithm-lab-hero__right {
  width: min(100vw * 0.4365079365, 794.4444444444px);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-hero .algorithm-lab-hero__right {
    width: 100%;
  }
}
.algorithm-lab-hero .algorithm-lab-hero__content {
  grid-area: content;
  padding-top: min(100vw * 0.0231481481, 42.1296296296px);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-hero .algorithm-lab-hero__content {
    padding-top: 0;
    width: 100%;
  }
}
.algorithm-lab-hero .algorithm-lab-hero__eyebrow {
  display: none;
}
.algorithm-lab-hero .algorithm-lab-hero__title {
  font-family: "Inter", sans-serif;
  font-family: "Noto Sans JP";
  color: #2b3f5c;
  font-size: min(100vw * 0.0264550265, 48.1481481481px);
  font-weight: 900;
  line-height: 1.27;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-hero .algorithm-lab-hero__title {
    width: 100%;
    max-width: 100%;
    font-size: calc(100vw * 0.0700934579);
    line-height: 1.28;
    letter-spacing: 0;
    white-space: normal;
  }
}
.algorithm-lab-hero .algorithm-lab-hero__title-accent {
  color: var(--lab-red);
}
.algorithm-lab-hero .algorithm-lab-hero__title-sm {
  font-size: min(100vw * 0.0211640212, 38.5185185185px);
  letter-spacing: min(100vw * 0.0005291005, 0.962962963px);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-hero .algorithm-lab-hero__title-sm {
    font-size: calc(100vw * 0.0560747664);
    letter-spacing: 0;
  }
}
.algorithm-lab-hero .algorithm-lab-hero__title-sep1 {
  letter-spacing: -0.22em;
}
.algorithm-lab-hero .algorithm-lab-hero__title-sep2 {
  letter-spacing: -0.2em;
}
.algorithm-lab-hero .algorithm-lab-hero__lead {
  display: block;
  margin-top: min(100vw * 0.0231481481, 42.1296296296px);
  color: var(--lab-navy);
  font-size: min(100vw * 0.0119047619, 21.6666666667px);
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-hero .algorithm-lab-hero__lead {
    display: none;
  }
}
.algorithm-lab-hero .algorithm-lab-hero__visual {
  grid-area: visual;
  align-self: stretch;
  overflow: hidden;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-hero .algorithm-lab-hero__visual {
    margin: calc(100vw * 0.0280373832) 0 calc(100vw * 0.0560747664);
  }
}
.algorithm-lab-hero .algorithm-lab-hero__visual img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-hero .algorithm-lab-hero__visual img {
    -o-object-fit: fill;
       object-fit: fill;
    height: auto;
  }
}
.algorithm-lab-hero .algorithm-lab-hero__metrics {
  grid-area: metrics;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: min(100vw * 0.0231481481, 42.1296296296px);
  max-width: min(100vw * 0.3968253968, 722.2222222222px);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-hero .algorithm-lab-hero__metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: none;
    margin-top: 0;
    gap: 0;
  }
}
.algorithm-lab-hero .algorithm-lab-hero__metric {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: min(100vw * 0.085978836, 156.4814814815px);
  min-height: min(100vw * 0.0846560847, 154.0740740741px);
  padding: min(100vw * 0.0171957672, 31.2962962963px) 0 0 0;
  text-align: center;
  border-right: 1px solid var(--lab-navy);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-hero .algorithm-lab-hero__metric {
    width: 100%;
    min-width: 0;
    min-height: calc(100vw * 0.2102803738);
    padding: calc(100vw * 0.0514018692) calc(100vw * 0.0140186916);
  }
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-hero .algorithm-lab-hero__metric:nth-child(n+3) {
    min-height: calc(100vw * 0.2336448598);
  }
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-hero .algorithm-lab-hero__metric:nth-child(-n+2) {
    border-bottom: 1px solid var(--lab-navy);
  }
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-hero .algorithm-lab-hero__metric:nth-child(2) {
    border-right: 0;
  }
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-hero .algorithm-lab-hero__metric:nth-child(4) {
    border-right: 0;
  }
}
.algorithm-lab-hero .algorithm-lab-hero__metric:first-child {
  border-left: 1px solid var(--lab-navy);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-hero .algorithm-lab-hero__metric:first-child {
    border-left: 0;
  }
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-hero .algorithm-lab-hero__metric:first-child .algorithm-lab-hero__metric-value {
    font-size: calc(100vw * 0.0630841121);
  }
}
.algorithm-lab-hero .algorithm-lab-hero__metric-value {
  font-family: "Inter", sans-serif;
  color: var(--lab-navy);
  font-size: min(100vw * 0.0178571429, 32.5px);
  font-weight: 600;
  line-height: 1.15;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-hero .algorithm-lab-hero__metric-value {
    font-size: calc(100vw * 0.0700934579);
    line-height: calc(100vw * 0.0934579439);
    white-space: nowrap;
  }
}
.algorithm-lab-hero .algorithm-lab-hero__metric-value span {
  margin-left: min(100vw * 0.0026455026, 4.8148148148px);
  font-size: min(100vw * 0.0085978836, 15.6481481481px);
  font-weight: 600;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-hero .algorithm-lab-hero__metric-value span {
    margin-left: calc(100vw * 0.0070093458);
    font-size: calc(100vw * 0.0327102804);
    font-weight: 500;
    line-height: calc(100vw * 0.0443925234);
  }
}
.algorithm-lab-hero .algorithm-lab-hero__metric-label {
  margin-top: min(100vw * 0.0052910053, 9.6296296296px);
  color: var(--lab-navy);
  font-size: min(100vw * 0.0085978836, 15.6481481481px);
  font-weight: 600;
  line-height: 1.45;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-hero .algorithm-lab-hero__metric-label {
    margin-top: calc(100vw * 0.0093457944);
    font-size: calc(100vw * 0.0327102804);
    font-weight: 500;
    line-height: calc(100vw * 0.0514018692);
  }
}
.algorithm-lab-hero .algorithm-lab-hero__button {
  grid-area: button;
  width: min(100vw * 0.2116402116, 385.1851851852px);
  min-height: min(100vw * 0.0462962963, 84.2592592593px);
  margin-top: min(100vw * 0.0231481481, 42.1296296296px);
  font-size: min(100vw * 0.0119047619, 21.6666666667px);
  padding: min(100vw * 0.0112433862, 20.462962963px);
  background: none;
  border-radius: 4px;
  border: 2px solid #B83A37;
  color: #B83A37;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-hero .algorithm-lab-hero__button {
    width: 100%;
    height: calc(100vw * 0.1635514019);
    margin-top: calc(100vw * 0.0560747664);
    padding: calc(100vw * 0.0397196262);
    gap: calc(100vw * 0.0560747664);
    font-size: calc(100vw * 0.0373831776);
    padding: calc(100vw * 0.0397196262);
  }
}

.algorithm-lab-case {
  padding: min(100vw * 0.0740740741, 134.8148148148px) 0;
  background: #F9FBFF;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-case {
    padding: calc(100vw * 0.1168224299) 0;
    background: #F9FBFF;
  }
}
.algorithm-lab-case .algorithm-lab-case__title {
  color: var(--lab-navy);
  font-size: min(100vw * 0.0211640212, 38.5185185185px);
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-case .algorithm-lab-case__title {
    width: 100%;
    margin: 0 auto;
    width: calc(100vw * 0.7102803738);
    font-size: calc(100vw * 0.0747663551);
    line-height: calc(100vw * 0.1121495327);
  }
}
.algorithm-lab-case .algorithm-lab-case__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: min(100vw * 0.0158730159, 28.8888888889px);
  margin-top: min(100vw * 0.0343915344, 62.5925925926px);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-case .algorithm-lab-case__grid {
    grid-template-columns: 1fr;
    width: calc(100vw * 0.7102803738);
    margin: calc(100vw * 0.0934579439) auto 0;
    gap: calc(100vw * 0.0537383178);
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
.algorithm-lab-case .algorithm-lab-case__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border-top: 3px solid #2B3F5C;
  background: #fff;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-case .algorithm-lab-case__card {
    min-width: 0;
    min-height: calc(100vw * 0.8411214953);
  }
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-case .algorithm-lab-case__card.is-sp-hidden {
    display: none;
  }
}
.algorithm-lab-case .algorithm-lab-case__card-image {
  display: block;
  width: 100%;
  aspect-ratio: 281/158;
  -o-object-fit: cover;
     object-fit: cover;
  background: #dce5ee;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-case .algorithm-lab-case__card-image {
    aspect-ratio: 304/171;
  }
}
.algorithm-lab-case .algorithm-lab-case__card-body {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-height: min(100vw * 0.1322751323, 240.7407407407px);
  padding: min(100vw * 0.0158730159, 28.8888888889px);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-case .algorithm-lab-case__card-body {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    min-height: calc(100vw * 0.4205607477);
    padding: calc(100vw * 0.0560747664) calc(100vw * 0.0560747664) calc(100vw * 0.1612149533);
  }
}
.algorithm-lab-case .algorithm-lab-case__card-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: min(100vw * 0.0079365079, 14.4444444444px);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-case .algorithm-lab-case__card-main {
    gap: calc(100vw * 0.0280373832);
  }
}
.algorithm-lab-case .algorithm-lab-case__card-category {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-item-align: start;
      align-self: flex-start;
  padding: min(100vw * 0.0026455026, 4.8148148148px) min(100vw * 0.0052910053, 9.6296296296px);
  border: 1px solid #324662;
  background: #fff;
  color: #324662;
  font-size: min(100vw * 0.0092592593, 16.8518518519px);
  font-weight: 400;
  line-height: 1.2;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-case .algorithm-lab-case__card-category {
    padding: calc(100vw * 0.0093457944) calc(100vw * 0.0186915888);
    font-size: calc(100vw * 0.0327102804);
  }
}
.algorithm-lab-case .algorithm-lab-case__card-lead {
  color: var(--lab-navy);
  font-size: min(100vw * 0.0119047619, 21.6666666667px);
  font-weight: 700;
  line-height: 1.45;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-case .algorithm-lab-case__card-lead {
    font-size: calc(100vw * 0.0420560748);
    line-height: 1.45;
    overflow-wrap: anywhere;
  }
}
.algorithm-lab-case .algorithm-lab-case__card-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: min(100vw * 0.0052910053, 9.6296296296px);
}
.algorithm-lab-case .algorithm-lab-case__card-tag {
  color: #959db2;
  font-size: min(100vw * 0.0092592593, 16.8518518519px);
  font-weight: 400;
  line-height: 1.2;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-case .algorithm-lab-case__card-tag {
    font-size: calc(100vw * 0.0327102804);
  }
}
.algorithm-lab-case .algorithm-lab-case__card-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: min(100vw * 0.0066137566, 12.037037037px);
  -ms-flex-item-align: end;
      align-self: flex-end;
  width: min(100vw * 0.0297619048, 54.1666666667px);
  margin-top: min(100vw * 0.0105820106, 19.2592592593px);
  padding: min(100vw * 0.0066137566, 12.037037037px) min(100vw * 0.0066137566, 12.037037037px) min(100vw * 0.0066137566, 12.037037037px) min(100vw * 0.0085978836, 15.6481481481px);
  border: 0;
  border-right: min(100vw * 0.0026455026, 4.8148148148px) solid #B83A37;
  border-radius: min(100vw * 0.001984127, 3.6111111111px);
  background: #2B3F5C;
  color: #fff;
  font-family: inherit;
  font-size: min(100vw * 0.0092592593, 16.8518518519px);
  font-weight: 400;
  line-height: 1.2;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.algorithm-lab-case .algorithm-lab-case__card-more:hover {
  opacity: 0.85;
}
.algorithm-lab-case .algorithm-lab-case__card-more::after {
  content: "";
  display: block;
  width: min(100vw * 0.0119047619, 21.6666666667px);
  height: min(100vw * 0.005952381, 10.8333333333px);
  background: #D3DAE8;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='9' viewBox='0 0 18 9' fill='none'%3E%3Cpath d='M12.4779 2.78645H0.476953C0.213556 2.78645 0 3.00001 0 3.26341V5.48919C0 5.75258 0.213556 5.96614 0.476953 5.96614H12.4779V7.7968C12.4779 8.64665 13.5054 9.07225 14.1063 8.47133L17.5269 5.05083C17.8994 4.67829 17.8994 4.07431 17.5269 3.70181L14.1063 0.2813C13.5054 -0.319621 12.4779 0.10598 12.4779 0.95583V2.78645Z' fill='%23D3DAE8'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='9' viewBox='0 0 18 9' fill='none'%3E%3Cpath d='M12.4779 2.78645H0.476953C0.213556 2.78645 0 3.00001 0 3.26341V5.48919C0 5.75258 0.213556 5.96614 0.476953 5.96614H12.4779V7.7968C12.4779 8.64665 13.5054 9.07225 14.1063 8.47133L17.5269 5.05083C17.8994 4.67829 17.8994 4.07431 17.5269 3.70181L14.1063 0.2813C13.5054 -0.319621 12.4779 0.10598 12.4779 0.95583V2.78645Z' fill='%23D3DAE8'/%3E%3C/svg%3E") center/contain no-repeat;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-case .algorithm-lab-case__card-more::after {
    width: calc(100vw * 0.0420560748);
    height: calc(100vw * 0.0210280374);
  }
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-case .algorithm-lab-case__card-more {
    position: absolute;
    right: calc(100vw * 0.0560747664);
    bottom: calc(100vw * 0.0560747664);
    margin-top: calc(100vw * 0.0560747664);
    width: calc(100vw * 0.1051401869);
    padding: calc(100vw * 0.023364486) calc(100vw * 0.023364486) calc(100vw * 0.023364486) calc(100vw * 0.0303738318);
    border-right-width: calc(100vw * 0.0093457944);
    border-radius: calc(100vw * 0.0070093458);
    font-size: calc(100vw * 0.0327102804);
    gap: calc(100vw * 0.023364486);
  }
}
.algorithm-lab-case .algorithm-lab-case__load-more {
  display: none;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-case .algorithm-lab-case__load-more {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: calc(100vw * 0.023364486);
    width: calc(100vw * 0.5140186916);
    min-height: calc(100vw * 0.0747663551);
    margin: calc(100vw * 0.1121495327) auto 0;
    padding: calc(100vw * 0.0070093458) calc(100vw * 0.0327102804);
    border: 0;
    border-radius: calc(100vw * 0.0093457944);
    background: var(--lab-navy);
    color: #fff;
    font-family: inherit;
    font-size: calc(100vw * 0.0327102804);
    font-weight: 400;
    line-height: 1.2;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
         appearance: none;
  }
}
.algorithm-lab-case .algorithm-lab-case__load-more::after {
  content: "+";
  font-weight: 400;
  line-height: 1;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-case .algorithm-lab-case__load-more::after {
    font-size: calc(100vw * 0.046728972);
  }
}
.algorithm-lab-case .algorithm-lab-case__load-more.is-hidden {
  display: none;
}

.algorithm-lab-about {
  padding: min(100vw * 0.0740740741, 134.8148148148px) 0;
  background: url("../img/lp/about-bk.png") center/cover no-repeat;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-about {
    padding: calc(100vw * 0.1869158879) 0;
    background-image: url("../img/lp/aboutsp-bk.png");
  }
}
.algorithm-lab-about .algorithm-lab-about__inner {
  display: grid;
  grid-template-columns: min(100vw * 0.2248677249, 409.2592592593px) 1fr;
  gap: min(100vw * 0.0529100529, 96.2962962963px);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-about .algorithm-lab-about__inner {
    display: block;
  }
}
.algorithm-lab-about .algorithm-lab-section-heading__title {
  color: var(--lab-navy);
  font-size: min(100vw * 0.0211640212, 38.5185185185px);
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-about .algorithm-lab-section-heading__title {
    font-size: calc(100vw * 0.0747663551);
    line-height: calc(100vw * 0.1121495327);
  }
}
.algorithm-lab-about .algorithm-lab-about__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: min(100vw * 0.0264550265, 48.1481481481px);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-about .algorithm-lab-about__body {
    margin-top: calc(100vw * 0.035046729);
    gap: calc(100vw * 0.0514018692);
  }
}
.algorithm-lab-about .algorithm-lab-about__lead {
  color: var(--lab-navy);
  font-size: min(100vw * 0.0158730159, 28.8888888889px);
  font-weight: 700;
  line-height: 1.45;
  margin-top: min(100vw * 0.0026455026, 4.8148148148px);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-about .algorithm-lab-about__lead {
    font-size: calc(100vw * 0.0560747664);
    line-height: calc(100vw * 0.0934579439);
  }
}
.algorithm-lab-about .algorithm-lab-about__text {
  color: var(--lab-navy);
  font-size: min(100vw * 0.0132275132, 24.0740740741px);
  font-weight: 400;
  line-height: 2.4;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-about .algorithm-lab-about__text {
    font-size: calc(100vw * 0.046728972);
    line-height: calc(100vw * 0.0934579439);
  }
}
.algorithm-lab-about .algorithm-lab-about__diagram {
  grid-column: 1/-1;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: min(100vw * 0.2010582011, 365.9259259259px);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-about .algorithm-lab-about__diagram {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: auto;
    gap: 0;
    margin-top: calc(100vw * 0.0794392523);
  }
}
.algorithm-lab-about .algorithm-lab-about__circle {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: min(100vw * 0.2116402116, 385.1851851852px);
  height: min(100vw * 0.2116402116, 385.1851851852px);
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #D3DAE8;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-about .algorithm-lab-about__circle {
    width: calc(100vw * 0.7009345794);
    height: calc(100vw * 0.7009345794);
    max-width: 100%;
  }
}
.algorithm-lab-about .algorithm-lab-about__circle--left {
  margin-right: -24px;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-about .algorithm-lab-about__circle--left {
    margin: 0;
  }
}
.algorithm-lab-about .algorithm-lab-about__circle--right {
  margin-left: -24px;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-about .algorithm-lab-about__circle--right {
    margin: 0 0 0;
  }
}
.algorithm-lab-about .algorithm-lab-about__circle-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: min(100vw * 0.0132275132, 24.0740740741px);
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-about .algorithm-lab-about__circle-inner {
    gap: calc(100vw * 0.0373831776);
  }
}
.algorithm-lab-about .algorithm-lab-about__circle--right .algorithm-lab-about__circle-inner {
  position: relative;
  top: min(100vw * 0.0132275132, 24.0740740741px);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-about .algorithm-lab-about__circle--right .algorithm-lab-about__circle-inner {
    top: 0;
  }
}
.algorithm-lab-about .algorithm-lab-about__circle-title {
  color: var(--lab-navy);
  font-size: min(100vw * 0.0264550265, 48.1481481481px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-about .algorithm-lab-about__circle-title {
    font-size: calc(100vw * 0.0747663551);
    line-height: calc(100vw * 0.1121495327);
  }
}
.algorithm-lab-about .algorithm-lab-about__circle--left .algorithm-lab-about__circle-title::after,
.algorithm-lab-about .algorithm-lab-about__circle--right .algorithm-lab-about__circle-title::after {
  content: "";
  display: block;
  width: min(100vw * 0.0330687831, 60.1851851852px);
  height: min(100vw * 0.001984127, 3.6111111111px);
  margin: min(100vw * 0.0092592593, 16.8518518519px) auto 0;
  background: #B83A37;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-about .algorithm-lab-about__circle--left .algorithm-lab-about__circle-title::after,
  .algorithm-lab-about .algorithm-lab-about__circle--right .algorithm-lab-about__circle-title::after {
    width: calc(100vw * 0.1168224299);
    height: calc(100vw * 0.0070093458);
    margin-top: calc(100vw * 0.0327102804);
  }
}
.algorithm-lab-about .algorithm-lab-about__circle-text {
  color: var(--lab-navy);
  font-size: min(100vw * 0.0105820106, 19.2592592593px);
  font-weight: 400;
  line-height: 2;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-about .algorithm-lab-about__circle-text {
    font-size: calc(100vw * 0.0373831776);
    line-height: calc(100vw * 0.0747663551);
  }
}
.algorithm-lab-about .algorithm-lab-about__note {
  color: #324662;
  font-size: min(100vw * 0.0092592593, 16.8518518519px);
  font-weight: 400;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-about .algorithm-lab-about__note {
    font-size: calc(100vw * 0.0327102804);
  }
}
.algorithm-lab-about .algorithm-lab-about__center {
  position: relative;
  z-index: 2;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-about .algorithm-lab-about__center {
    z-index: 3;
    margin: calc(100vw * -0.023364486) 0;
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
}
.algorithm-lab-about .algorithm-lab-about__center picture {
  display: block;
}
.algorithm-lab-about .algorithm-lab-about__center-image {
  display: block;
  width: min(100vw * 0.2037037037, 370.7407407407px);
  height: auto;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-about .algorithm-lab-about__center-image {
    width: calc(100vw * 0.6542056075);
  }
}

.algorithm-lab-member {
  padding: min(100vw * 0.0740740741, 134.8148148148px) 0;
  background: #f9fbff;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-member {
    padding: calc(100vw * 0.2242990654) 0;
    background: #f9fbff;
  }
}
.algorithm-lab-member .algorithm-lab-member__inner {
  display: grid;
  grid-template-columns: min(100vw * 0.2248677249, 340px) 1fr;
  gap: min(100vw * 0.0383597884, 58px);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-member .algorithm-lab-member__inner {
    display: block;
  }
}
.algorithm-lab-member .algorithm-lab-member__title {
  color: var(--lab-navy);
  font-size: min(100vw * 0.0211640212, 32px);
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-member .algorithm-lab-member__title {
    font-size: calc(100vw * 0.0747663551);
    line-height: calc(100vw * 0.1121495327);
  }
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-member .algorithm-lab-member__content {
    margin-top: calc(100vw * 0.0934579439);
  }
}
.algorithm-lab-member .algorithm-lab-member__main-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: min(100vw * 0.0158730159, 24px);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-member .algorithm-lab-member__main-row {
    grid-template-columns: 1fr;
    gap: calc(100vw * 0.0560747664);
  }
}
.algorithm-lab-member .algorithm-lab-member__advisor-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(100vw * 0.0158730159, 24px);
  margin-top: min(100vw * 0.0158730159, 24px);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-member .algorithm-lab-member__advisor-row {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: calc(100vw * 0.0560747664);
  }
}
.algorithm-lab-member .algorithm-lab-member__advisor-row .algorithm-lab-member__card {
  border: 0;
  background: transparent;
}
.algorithm-lab-member .algorithm-lab-member__card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: min(100vw * 0.0105820106, 16px);
  padding: min(100vw * 0.0158730159, 24px) min(100vw * 0.0158730159, 24px) min(100vw * 0.0284391534, 43px) min(100vw * 0.0158730159, 24px);
  border: 1px solid var(--lab-line);
  background: #fff;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-member .algorithm-lab-member__card {
    row-gap: calc(100vw * 0.0373831776);
    padding: calc(100vw * 0.0560747664);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.algorithm-lab-member .algorithm-lab-member__summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: min(100vw * 0.0105820106, 19.2592592593px);
  width: 100%;
  list-style: none;
  cursor: pointer;
}
.algorithm-lab-member .algorithm-lab-member__summary::-webkit-details-marker {
  display: none;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-member .algorithm-lab-member__summary {
    gap: calc(100vw * 0.0373831776);
  }
}
.algorithm-lab-member .algorithm-lab-member__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(100vw * 0.0158730159, 24px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-member .algorithm-lab-member__head {
    gap: calc(100vw * 0.0560747664);
  }
}
.algorithm-lab-member .algorithm-lab-member__image {
  width: min(100vw * 0.1084656085, 164px);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
  background: var(--lab-soft-bg);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-member .algorithm-lab-member__image {
    width: calc(100vw * 0.3831775701);
  }
}
.algorithm-lab-member .algorithm-lab-member__advisor-row .algorithm-lab-member__image {
  width: min(100vw * 0.0634920635, 96px);
  height: min(100vw * 0.0634920635, 96px);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-member .algorithm-lab-member__advisor-row .algorithm-lab-member__image {
    width: calc(100vw * 0.2242990654);
    height: calc(100vw * 0.2242990654);
  }
}
.algorithm-lab-member .algorithm-lab-member__profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
}
.algorithm-lab-member .algorithm-lab-member__role {
  color: var(--lab-navy);
  font-size: min(100vw * 0.0092592593, 14px);
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-member .algorithm-lab-member__role {
    font-size: calc(100vw * 0.0327102804);
    line-height: 1.5;
  }
}
.algorithm-lab-member .algorithm-lab-member__name {
  color: var(--lab-navy);
  font-size: min(100vw * 0.0158730159, 24px);
  font-weight: 700;
  line-height: 1.667;
  white-space: nowrap;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-member .algorithm-lab-member__name {
    font-size: calc(100vw * 0.0560747664);
    line-height: calc(100vw * 0.0934579439);
  }
}
.algorithm-lab-member .algorithm-lab-member__affiliation {
  color: var(--lab-navy);
  font-size: min(100vw * 0.0092592593, 14px);
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-member .algorithm-lab-member__affiliation {
    font-size: calc(100vw * 0.0327102804);
    line-height: 1.5;
  }
}
.algorithm-lab-member .algorithm-lab-member__toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: min(100vw * 0.0066137566, 10px);
  -ms-flex-item-align: end;
      align-self: flex-end;
  width: min(100vw * 0.0297619048, 45px);
  margin-top: auto;
  padding: min(100vw * 0.0066137566, 10px) min(100vw * 0.0066137566, 10px) min(100vw * 0.0066137566, 10px) min(100vw * 0.0085978836, 13px);
  border: 0;
  border-right: min(100vw * 0.0026455026, 4px) solid #B83A37;
  border-radius: min(100vw * 0.001984127, 3px);
  background: #2B3F5C;
  color: #fff;
  font-size: min(100vw * 0.0092592593, 14px);
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-member .algorithm-lab-member__toggle {
    position: absolute;
    right: calc(100vw * 0.0560747664);
    bottom: calc(100vw * 0.0560747664);
    width: calc(100vw * 0.1051401869);
    margin-top: 0;
    padding: calc(100vw * 0.023364486) calc(100vw * 0.023364486) calc(100vw * 0.023364486) calc(100vw * 0.0303738318);
    border-right-width: calc(100vw * 0.0093457944);
    border-radius: calc(100vw * 0.0070093458);
    font-size: calc(100vw * 0.0327102804);
    gap: calc(100vw * 0.023364486);
  }
}
.algorithm-lab-member .algorithm-lab-member__toggle-text {
  white-space: nowrap;
}
.algorithm-lab-member .algorithm-lab-member__toggle-text::before {
  content: attr(data-open);
}
.algorithm-lab-member .algorithm-lab-member__toggle::after {
  content: "";
  display: block;
  width: min(100vw * 0.0119047619, 18px);
  height: min(100vw * 0.005952381, 9px);
  background: #D3DAE8;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='9' viewBox='0 0 18 9' fill='none'%3E%3Cpath d='M12.4779 2.78645H0.476953C0.213556 2.78645 0 3.00001 0 3.26341V5.48919C0 5.75258 0.213556 5.96614 0.476953 5.96614H12.4779V7.7968C12.4779 8.64665 13.5054 9.07225 14.1063 8.47133L17.5269 5.05083C17.8994 4.67829 17.8994 4.07431 17.5269 3.70181L14.1063 0.2813C13.5054 -0.319621 12.4779 0.10598 12.4779 0.95583V2.78645Z' fill='%23D3DAE8'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='9' viewBox='0 0 18 9' fill='none'%3E%3Cpath d='M12.4779 2.78645H0.476953C0.213556 2.78645 0 3.00001 0 3.26341V5.48919C0 5.75258 0.213556 5.96614 0.476953 5.96614H12.4779V7.7968C12.4779 8.64665 13.5054 9.07225 14.1063 8.47133L17.5269 5.05083C17.8994 4.67829 17.8994 4.07431 17.5269 3.70181L14.1063 0.2813C13.5054 -0.319621 12.4779 0.10598 12.4779 0.95583V2.78645Z' fill='%23D3DAE8'/%3E%3C/svg%3E") center/contain no-repeat;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-member .algorithm-lab-member__toggle::after {
    width: calc(100vw * 0.0420560748);
    height: calc(100vw * 0.0210280374);
  }
}
.algorithm-lab-member .algorithm-lab-member__detail {
  width: 100%;
  margin-top: min(100vw * 0.0105820106, 19.2592592593px);
  padding-top: min(100vw * 0.0105820106, 19.2592592593px);
  border-top: 1px solid var(--lab-line);
}
.algorithm-lab-member .algorithm-lab-member__bio {
  color: var(--lab-navy);
  font-size: min(100vw * 0.0092592593, 14px);
  font-weight: 400;
  line-height: 1.8;
}
.algorithm-lab-member .algorithm-lab-member__bio + .algorithm-lab-member .algorithm-lab-member__bio {
  margin-top: min(100vw * 0.0052910053, 9.6296296296px);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-member .algorithm-lab-member__bio {
    font-size: calc(100vw * 0.0327102804);
  }
}
.algorithm-lab-member .algorithm-lab-member__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: min(100vw * 0.0052910053, 9.6296296296px);
  margin-top: min(100vw * 0.0079365079, 14.4444444444px);
  padding: 0;
  list-style: none;
}
.algorithm-lab-member .algorithm-lab-member__tag {
  color: #959db2;
  font-size: min(100vw * 0.0079365079, 12px);
  font-weight: 400;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-member .algorithm-lab-member__tag {
    font-size: calc(100vw * 0.0280373832);
  }
}
.algorithm-lab-member .algorithm-lab-member__note {
  grid-column: 2;
  color: var(--lab-navy);
  font-size: min(100vw * 0.0132275132, 20px);
  font-weight: 400;
  line-height: 2;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-member .algorithm-lab-member__note {
    grid-column: auto;
    margin-top: calc(100vw * 0.0934579439);
    font-size: calc(100vw * 0.046728972);
    line-height: calc(100vw * 0.0934579439);
  }
}

.algorithm-lab-member-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: min(100vw * 0.0211640212, 38.5185185185px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-member-modal {
    padding: calc(100vw * 0.046728972);
  }
}

.algorithm-lab-member-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.algorithm-lab-member-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
}

.algorithm-lab-member-modal__dialog {
  position: relative;
  width: min(100%, min(100vw * 0.4232804233, 770.3703703704px));
  max-height: calc(100vh - min(100vw * 0.0423280423, 77.037037037px));
  overflow-y: auto;
  padding: min(100vw * 0.0297619048, 54.1666666667px) min(100vw * 0.0211640212, 38.5185185185px);
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.96);
  -webkit-box-shadow: 0 0 min(100vw * 0.0105820106, 19.2592592593px) rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 min(100vw * 0.0105820106, 19.2592592593px) rgba(0, 0, 0, 0.12);
  color: #0a1c2d;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-member-modal__dialog {
    width: 100%;
    max-height: calc(100vh - calc(100vw * 0.0934579439));
    padding: calc(100vw * 0.1051401869) calc(100vw * 0.0560747664) calc(100vw * 0.1051401869);
  }
}

@supports (backdrop-filter: blur(4px)) {
  .algorithm-lab-member-modal__dialog {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
  }
}
.algorithm-lab-member-modal__close {
  position: absolute;
  top: min(100vw * 0.0079365079, 14.4444444444px);
  right: min(100vw * 0.0079365079, 14.4444444444px);
  width: min(100vw * 0.0211640212, 38.5185185185px);
  height: min(100vw * 0.0211640212, 38.5185185185px);
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-member-modal__close {
    top: calc(100vw * 0.023364486);
    right: calc(100vw * 0.023364486);
    width: calc(100vw * 0.0747663551);
    height: calc(100vw * 0.0747663551);
  }
}

.algorithm-lab-member-modal__close::before,
.algorithm-lab-member-modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(100vw * 0.0119047619, 21.6666666667px);
  height: min(100vw * 0.0013227513, 2.4074074074px);
  background: #0a1c2d;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-member-modal__close::before,
  .algorithm-lab-member-modal__close::after {
    width: calc(100vw * 0.0420560748);
    height: calc(100vw * 0.0046728972);
  }
}

.algorithm-lab-member-modal__close::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.algorithm-lab-member-modal__close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.algorithm-lab-member-modal__body {
  color: #0a1c2d;
  font-size: min(100vw * 0.0105820106, 19.2592592593px);
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-member-modal__body {
    font-size: calc(100vw * 0.0373831776);
  }
}

.algorithm-lab-member-modal__body .algorithm-lab-member__bio {
  color: inherit;
  font-size: inherit;
  line-height: 1.5;
}

.algorithm-lab-member-modal__body .algorithm-lab-member__bio + .algorithm-lab-member__bio {
  margin-top: min(100vw * 0.0079365079, 14.4444444444px);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-member-modal__body .algorithm-lab-member__bio + .algorithm-lab-member__bio {
    margin-top: calc(100vw * 0.0280373832);
  }
}

.algorithm-lab-member-modal__body .algorithm-lab-member__tags {
  margin-top: min(100vw * 0.0158730159, 28.8888888889px);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-member-modal__body .algorithm-lab-member__tags {
    margin-top: calc(100vw * 0.0560747664);
  }
}

body.algorithm-lab-member-modal-open {
  overflow: hidden;
}

.algorithm-lab-case-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: min(100vw * 0.0211640212, 38.5185185185px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-case-modal {
    padding: calc(100vw * 0.046728972);
  }
}

.algorithm-lab-case-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.algorithm-lab-case-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
}

.algorithm-lab-case-modal__dialog {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: min(100%, min(100vw * 0.582010582, 1059.2592592593px));
  max-height: calc(100vh - min(100vw * 0.0423280423, 77.037037037px));
  overflow-y: auto;
  padding: min(100vw * 0.0264550265, 48.1481481481px);
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.96);
  -webkit-box-shadow: 0 0 min(100vw * 0.0105820106, 19.2592592593px) rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 min(100vw * 0.0105820106, 19.2592592593px) rgba(0, 0, 0, 0.12);
  color: #0a1c2d;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-case-modal__dialog {
    width: 100%;
    max-height: calc(100vh - calc(100vw * 0.0934579439));
    padding: calc(100vw * 0.0747663551) calc(100vw * 0.0560747664);
  }
}

@supports (backdrop-filter: blur(4px)) {
  .algorithm-lab-case-modal__dialog {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
  }
}
.algorithm-lab-case-modal__body {
  color: #0a1c2d;
}

.algorithm-lab-case-modal__body .algorithm-lab-case-modal__head {
  display: grid;
  grid-template-columns: 1fr min(100vw * 0.2645502646, 481.4814814815px);
  gap: min(100vw * 0.0264550265, 48.1481481481px);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-case-modal__body .algorithm-lab-case-modal__head {
    grid-template-columns: 1fr;
    gap: calc(100vw * 0.046728972);
  }
}

.algorithm-lab-case-modal__body .algorithm-lab-case-modal__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: min(100vw * 0.0105820106, 19.2592592593px);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-case-modal__body .algorithm-lab-case-modal__info {
    gap: calc(100vw * 0.0280373832);
  }
}

.algorithm-lab-case-modal__body .algorithm-lab-case-modal__category {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: min(100vw * 0.0026455026, 4.8148148148px) min(100vw * 0.0052910053, 9.6296296296px);
  border: 1px solid #d3dae8;
  background: #fff;
  color: #959db2;
  font-size: min(100vw * 0.0092592593, 16.8518518519px);
  font-weight: 400;
  line-height: 1.2;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-case-modal__body .algorithm-lab-case-modal__category {
    padding: calc(100vw * 0.0093457944) calc(100vw * 0.0186915888);
    font-size: calc(100vw * 0.0327102804);
  }
}

.algorithm-lab-case-modal__body .algorithm-lab-case-modal__title {
  color: var(--lab-navy);
  font-size: min(100vw * 0.0158730159, 28.8888888889px);
  font-weight: 700;
  line-height: 1.45;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-case-modal__body .algorithm-lab-case-modal__title {
    font-size: calc(100vw * 0.0560747664);
    overflow-wrap: anywhere;
  }
}

.algorithm-lab-case-modal__body .algorithm-lab-case-modal__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: min(100vw * 0.0052910053, 9.6296296296px);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-case-modal__body .algorithm-lab-case-modal__tags {
    gap: calc(100vw * 0.0186915888);
  }
}

.algorithm-lab-case-modal__body .algorithm-lab-case-modal__tag {
  color: #959db2;
  font-size: min(100vw * 0.0092592593, 16.8518518519px);
  font-weight: 400;
  line-height: 1.2;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-case-modal__body .algorithm-lab-case-modal__tag {
    font-size: calc(100vw * 0.0327102804);
  }
}

.algorithm-lab-case-modal__body .algorithm-lab-case-modal__image {
  display: block;
  width: 100%;
  aspect-ratio: 400/225;
  -o-object-fit: cover;
     object-fit: cover;
  background: #dce5ee;
}

.algorithm-lab-case-modal__body .algorithm-lab-case-modal__text {
  margin-top: min(100vw * 0.0211640212, 38.5185185185px);
  font-size: min(100vw * 0.0105820106, 19.2592592593px);
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-case-modal__body .algorithm-lab-case-modal__text {
    margin-top: calc(100vw * 0.0560747664);
    font-size: calc(100vw * 0.0373831776);
  }
}

.algorithm-lab-case-modal__body .algorithm-lab-case-modal__paragraph + .algorithm-lab-case-modal__paragraph {
  margin-top: min(100vw * 0.0079365079, 14.4444444444px);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-case-modal__body .algorithm-lab-case-modal__paragraph + .algorithm-lab-case-modal__paragraph {
    margin-top: calc(100vw * 0.0280373832);
  }
}

.algorithm-lab-case-modal__body .algorithm-lab-case__text-accent {
  color: var(--lab-red);
}

.algorithm-lab-case-modal__close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: min(100vw * 0.0066137566, 12.037037037px);
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-top: min(100vw * 0.0211640212, 38.5185185185px);
  padding: min(100vw * 0.003968254, 7.2222222222px) min(100vw * 0.0092592593, 16.8518518519px);
  border: 1px solid var(--lab-navy);
  border-radius: min(100vw * 0.0026455026, 4.8148148148px);
  background: #324662;
  color: #fff;
  font-family: inherit;
  font-size: min(100vw * 0.0092592593, 16.8518518519px);
  font-weight: 400;
  line-height: 1.2;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.algorithm-lab-case-modal__close::after {
  content: "−";
  font-size: min(100vw * 0.0105820106, 19.2592592593px);
  font-weight: 400;
  line-height: 1;
}
.algorithm-lab-case-modal__close:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-case-modal__close {
    margin-top: calc(100vw * 0.0560747664);
    padding: calc(100vw * 0.0140186916) calc(100vw * 0.0327102804);
    border-radius: calc(100vw * 0.0093457944);
    gap: calc(100vw * 0.023364486);
    font-size: calc(100vw * 0.0327102804);
  }
}

body.algorithm-lab-case-modal-open {
  overflow: hidden;
}

.algorithm-lab-steps {
  padding: min(100vw * 0.0740740741, 134.8148148148px) 0;
  background: url("../img/lp/sec5-bk.png") center/cover no-repeat;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-steps {
    padding: calc(100vw * 0.2242990654) 0;
    background-image: url("../img/lp/sec5sp-bk.png");
  }
}
.algorithm-lab-steps .algorithm-lab-steps__header {
  display: grid;
  grid-template-columns: min(100vw * 0.2248677249, 409.2592592593px) 1fr;
  gap: min(100vw * 0.0383597884, 69.8148148148px);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-steps .algorithm-lab-steps__header {
    display: block;
  }
}
.algorithm-lab-steps .algorithm-lab-steps__title {
  color: var(--lab-navy);
  font-size: min(100vw * 0.0211640212, 38.5185185185px);
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-steps .algorithm-lab-steps__title {
    font-size: calc(100vw * 0.0747663551);
    line-height: calc(100vw * 0.1121495327);
  }
}
.algorithm-lab-steps .algorithm-lab-steps__lead {
  margin-top: 0;
  color: var(--lab-navy);
  font-size: min(100vw * 0.0132275132, 24.0740740741px);
  font-weight: 500;
  line-height: 2;
  white-space: nowrap;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-steps .algorithm-lab-steps__lead {
    margin-top: calc(100vw * 0.0654205607);
    font-size: calc(100vw * 0.046728972);
    line-height: calc(100vw * 0.0934579439);
    white-space: break-spaces;
  }
}
.algorithm-lab-steps .algorithm-lab-steps__list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: min(100vw * 0.0423280423, 77.037037037px);
  width: min(100vw * 0.5899470899, 1073.7037037037px);
  margin: min(100vw * 0.0529100529, 96.2962962963px) 0 0 auto;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-steps .algorithm-lab-steps__list {
    width: 100%;
    gap: calc(100vw * 0.1121495327);
    margin: calc(100vw * 0.1308411215) auto 0;
  }
}
.algorithm-lab-steps .algorithm-lab-steps__list::before {
  content: "";
  position: absolute;
  top: min(100vw * 0.0423280423, 77.037037037px);
  left: min(100vw * 0.0443121693, 80.6481481481px);
  bottom: min(100vw * 0.0423280423, 77.037037037px);
  width: min(100vw * 0.0006613757, 1.2037037037px);
  background: #b7c4d2;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-steps .algorithm-lab-steps__list::before {
    display: block;
    top: calc(100vw * 0.214953271);
    left: 50%;
    bottom: calc(100vw * 0.0373831776);
    width: 1px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.algorithm-lab-steps .algorithm-lab-steps__item {
  position: relative;
  display: grid;
  grid-template-columns: min(100vw * 0.0886243386, 161.2962962963px) 1fr;
  gap: min(100vw * 0.0436507937, 79.4444444444px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-steps .algorithm-lab-steps__item {
    display: block;
  }
}
.algorithm-lab-steps .algorithm-lab-steps__number {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: min(100vw * 0.0886243386, 161.2962962963px);
  height: min(100vw * 0.0886243386, 161.2962962963px);
  border-radius: 50%;
  background: transparent;
  color: var(--lab-navy);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-steps .algorithm-lab-steps__number {
    width: calc(100vw * 0.3130841121);
    height: calc(100vw * 0.3130841121);
    margin: 0 auto calc(100vw * 0.1168224299);
  }
}
.algorithm-lab-steps .algorithm-lab-steps__number::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: -1;
  width: min(100vw * 0.0886243386, 161.2962962963px);
  height: min(100vw * 0.0886243386, 161.2962962963px);
  border-radius: 50%;
  background: #fff;
  -webkit-filter: blur(min(100vw * 0.0046296296, 8.4259259259px));
          filter: blur(min(100vw * 0.0046296296, 8.4259259259px));
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-steps .algorithm-lab-steps__number::before {
    width: calc(100vw * 0.3130841121);
    height: calc(100vw * 0.3130841121);
    -webkit-filter: blur(calc(100vw * 0.0280373832));
            filter: blur(calc(100vw * 0.0280373832));
  }
}
.algorithm-lab-steps .algorithm-lab-steps__number span {
  font-family: "Cousine", "Courier New", monospace;
  font-size: min(100vw * 0.0079365079, 14.4444444444px);
  font-weight: 700;
  letter-spacing: 0.05em;
  position: relative;
  top: min(100vw * 0.0099206349, 18.0555555556px);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-steps .algorithm-lab-steps__number span {
    font-size: calc(100vw * 0.0327102804);
    top: calc(100vw * 0.035046729);
  }
}
.algorithm-lab-steps .algorithm-lab-steps__number strong {
  font-family: "DIN 2014", "DIN Alternate", "Arial Narrow", sans-serif;
  font-size: min(100vw * 0.037037037, 67.4074074074px);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-steps .algorithm-lab-steps__number strong {
    font-size: calc(100vw * 0.1308411215);
  }
}
.algorithm-lab-steps .algorithm-lab-steps__content {
  position: relative;
  padding: min(100vw * 0.0211640212, 38.5185185185px) 0 min(100vw * 0.0211640212, 38.5185185185px) min(100vw * 0.0317460317, 57.7777777778px);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-steps .algorithm-lab-steps__content {
    padding: calc(100vw * 0.0747663551) calc(100vw * 0.0560747664);
  }
}
.algorithm-lab-steps .algorithm-lab-steps__content::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: min(100vw * 0.0132275132, 24.0740740741px);
  background: -webkit-gradient(linear, left top, right top, color-stop(36.06%, #FFF), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, #FFF 36.06%, rgba(255, 255, 255, 0) 100%);
  -webkit-filter: blur(min(100vw * 0.0066137566, 12.037037037px));
          filter: blur(min(100vw * 0.0066137566, 12.037037037px));
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-steps .algorithm-lab-steps__content::after {
    border-radius: calc(100vw * 0.046728972);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(59.54%, #FFF), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(180deg, #FFF 59.54%, rgba(255, 255, 255, 0) 100%);
    -webkit-filter: blur(calc(100vw * 0.023364486));
            filter: blur(calc(100vw * 0.023364486));
  }
}
.algorithm-lab-steps .algorithm-lab-steps__item-title,
.algorithm-lab-steps .algorithm-lab-steps__item-text {
  position: relative;
  z-index: 1;
}
.algorithm-lab-steps .algorithm-lab-steps__item-title {
  color: var(--lab-navy);
  font-size: min(100vw * 0.0211640212, 38.5185185185px);
  font-weight: 700;
  line-height: 1.75;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-steps .algorithm-lab-steps__item-title {
    font-size: calc(100vw * 0.0654205607);
    line-height: calc(100vw * 0.0934579439);
  }
}
.algorithm-lab-step-reveal-enabled .algorithm-lab-steps .algorithm-lab-steps__item-title.js-step-title-reveal {
  overflow: hidden;
  max-width: 0;
  opacity: 0;
  white-space: nowrap;
  -webkit-transition: max-width 3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease;
  transition: max-width 3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease;
  will-change: max-width, opacity;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-step-reveal-enabled .algorithm-lab-steps .algorithm-lab-steps__item-title.js-step-title-reveal {
    max-width: none;
    white-space: normal;
    clip-path: inset(0 100% 0 0);
    -webkit-transition: clip-path 3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease;
    transition: clip-path 3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease;
    will-change: clip-path, opacity;
  }
}

.algorithm-lab-step-reveal-enabled .algorithm-lab-steps .algorithm-lab-steps__item-title.js-step-title-reveal.is-step-title-visible {
  max-width: 100%;
  opacity: 1;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-step-reveal-enabled .algorithm-lab-steps .algorithm-lab-steps__item-title.js-step-title-reveal.is-step-title-visible {
    max-width: none;
    clip-path: inset(0 0 0 0);
  }
}

.algorithm-lab-steps .algorithm-lab-steps__item-text {
  margin-top: min(100vw * 0.0052910053, 9.6296296296px);
  color: var(--lab-navy);
  font-size: min(100vw * 0.0105820106, 19.2592592593px);
  font-weight: 400;
  line-height: 2;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-steps .algorithm-lab-steps__item-text {
    font-size: calc(100vw * 0.0373831776);
    line-height: calc(100vw * 0.0747663551);
  }
}

.algorithm-lab-alliance {
  padding: min(100vw * 0.0740740741, 134.8148148148px) 0;
  background: url("../img/lp/sec6-bk.png") center/cover no-repeat;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-alliance {
    padding: calc(100vw * 0.2242990654) 0;
    background-image: url("../img/lp/sec6sp-bk.png");
  }
}
.algorithm-lab-alliance .algorithm-lab-alliance__inner {
  display: grid;
  grid-template-columns: min(100vw * 0.2248677249, 409.2592592593px) 1fr;
  gap: min(100vw * 0.0383597884, 69.8148148148px);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-alliance .algorithm-lab-alliance__inner {
    display: block;
  }
}
.algorithm-lab-alliance .algorithm-lab-alliance__title {
  color: var(--lab-navy);
  font-size: min(100vw * 0.0211640212, 38.5185185185px);
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-alliance .algorithm-lab-alliance__title {
    font-size: calc(100vw * 0.0747663551);
    line-height: calc(100vw * 0.1121495327);
  }
}
.algorithm-lab-alliance .algorithm-lab-alliance__lead {
  margin-top: 0;
  color: var(--lab-navy);
  font-size: min(100vw * 0.0132275132, 24.0740740741px);
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-alliance .algorithm-lab-alliance__lead {
    margin-top: calc(100vw * 0.0560747664);
    font-size: calc(100vw * 0.046728972);
    line-height: calc(100vw * 0.0934579439);
  }
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-alliance .algorithm-lab-alliance__body {
    margin-top: calc(100vw * 0.0560747664);
  }
}
.algorithm-lab-alliance .algorithm-lab-alliance__cards {
  display: grid;
  grid-template-columns: repeat(3, min(100vw * 0.2037037037, 370.7407407407px));
  gap: 0;
  margin-top: min(100vw * 0.0224867725, 40.9259259259px);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-alliance .algorithm-lab-alliance__cards {
    grid-template-columns: 1fr;
    gap: 0;
    width: calc(100vw * 0.7196261682);
    margin: calc(100vw * 0.0794392523) auto 0;
  }
}
.algorithm-lab-alliance .algorithm-lab-alliance__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: min(100vw * 0.2037037037, 370.7407407407px);
  aspect-ratio: 1/1;
  padding: min(100vw * 0.0211640212, 38.5185185185px) min(100vw * 0.0317460317, 57.7777777778px);
  border-radius: 50%;
  background: #fff;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-alliance .algorithm-lab-alliance__card {
    width: calc(100vw * 0.7196261682);
    padding: calc(100vw * 0.0747663551) calc(100vw * 0.1121495327);
  }
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-alliance .algorithm-lab-alliance__card + .algorithm-lab-alliance__card {
    margin-top: calc(100vw * -0.0841121495);
  }
}
.algorithm-lab-alliance .algorithm-lab-alliance__card-title {
  color: var(--lab-navy);
  font-size: min(100vw * 0.0132275132, 24.0740740741px);
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-alliance .algorithm-lab-alliance__card-title {
    font-size: calc(100vw * 0.0560747664);
  }
}
.algorithm-lab-alliance .algorithm-lab-alliance__card-title--large {
  font-size: min(100vw * 0.0158730159, 28.8888888889px);
  line-height: 1.6;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-alliance .algorithm-lab-alliance__card-title--large {
    font-size: calc(100vw * 0.0560747664);
    line-height: 1.4;
  }
}
.algorithm-lab-alliance .algorithm-lab-alliance__card-text {
  margin-top: min(100vw * 0.0105820106, 19.2592592593px);
  color: var(--lab-navy);
  font-size: min(100vw * 0.0105820106, 19.2592592593px);
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-alliance .algorithm-lab-alliance__card-text {
    margin-top: calc(100vw * 0.0373831776);
    font-size: calc(100vw * 0.0373831776);
  }
}

.algorithm-lab-news {
  padding: min(100vw * 0.0740740741, 134.8148148148px) 0;
  background: #F9FBFF;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-news {
    padding: calc(100vw * 0.2242990654) 0 0;
    background: #f9fbff;
  }
}
.algorithm-lab-news .algorithm-lab-news__inner {
  display: grid;
  grid-template-columns: min(100vw * 0.2248677249, 409.2592592593px) 1fr;
  gap: min(100vw * 0.0383597884, 69.8148148148px);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-news .algorithm-lab-news__inner {
    display: block;
  }
}
.algorithm-lab-news .algorithm-lab-news__title {
  color: var(--lab-navy);
  font-size: min(100vw * 0.0211640212, 38.5185185185px);
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-news .algorithm-lab-news__title {
    font-size: calc(100vw * 0.0747663551);
    line-height: calc(100vw * 0.1121495327);
  }
}
.algorithm-lab-news .algorithm-lab-news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(100vw * 0.0158730159, 28.8888888889px);
  width: min(100vw * 0.5899470899, 1073.7037037037px);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-news .algorithm-lab-news__grid {
    grid-template-columns: 1fr;
    width: calc(100vw * 0.6565420561);
    gap: calc(100vw * 0.0560747664);
    margin: calc(100vw * 0.1168224299) auto 0;
  }
}
.algorithm-lab-news .algorithm-lab-news__card {
  min-height: min(100vw * 0.2301587302, 418.8888888889px);
  border: 1px solid var(--lab-line);
  background: #fff;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-news .algorithm-lab-news__card {
    min-height: calc(100vw * 0.8130841121);
  }
}
.algorithm-lab-news .algorithm-lab-news__thumb {
  display: block;
  height: min(100vw * 0.1044973545, 190.1851851852px);
  background: #dfe5eb;
  overflow: hidden;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-news .algorithm-lab-news__thumb {
    height: calc(100vw * 0.3691588785);
  }
}
.algorithm-lab-news .algorithm-lab-news__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.algorithm-lab-news .algorithm-lab-news__body {
  padding: min(100vw * 0.0158730159, 28.8888888889px);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-news .algorithm-lab-news__body {
    padding: calc(100vw * 0.0560747664);
  }
}
.algorithm-lab-news .algorithm-lab-news__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #959db2;
  font-size: min(100vw * 0.0092592593, 16.8518518519px);
  font-weight: 400;
}
.algorithm-lab-news .algorithm-lab-news__meta span {
  padding: min(100vw * 0.0013227513, 2.4074074074px) min(100vw * 0.0105820106, 19.2592592593px);
  background: #fff;
  border: 1px solid var(--lab-line);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-news .algorithm-lab-news__meta {
    font-size: calc(100vw * 0.0327102804);
  }
  .algorithm-lab-news .algorithm-lab-news__meta span {
    padding: calc(100vw * 0.0046728972) calc(100vw * 0.0373831776);
  }
}
.algorithm-lab-news .algorithm-lab-news__headline {
  margin-top: min(100vw * 0.0105820106, 19.2592592593px);
  color: var(--lab-navy);
  font-size: min(100vw * 0.0105820106, 19.2592592593px);
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-news .algorithm-lab-news__headline {
    margin-top: calc(100vw * 0.0373831776);
    font-size: calc(100vw * 0.0373831776);
  }
}
.algorithm-lab-news .algorithm-lab-news__headline a {
  color: inherit;
  text-decoration: none;
}
.algorithm-lab-news .algorithm-lab-news__empty {
  grid-column: 1/-1;
  color: var(--lab-navy);
  font-size: min(100vw * 0.0105820106, 19.2592592593px);
  line-height: 1.8;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-news .algorithm-lab-news__empty {
    font-size: calc(100vw * 0.0373831776);
  }
}

.algorithm-lab-faq {
  padding: min(100vw * 0.0740740741, 134.8148148148px) 0;
  background: #FFF;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-faq {
    padding: calc(100vw * 0.2242990654) 0;
    background: #FFF;
  }
}
.algorithm-lab-faq .algorithm-lab-faq__inner {
  display: grid;
  grid-template-columns: min(100vw * 0.2248677249, 409.2592592593px) 1fr;
  gap: min(100vw * 0.0383597884, 69.8148148148px);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-faq .algorithm-lab-faq__inner {
    display: block;
  }
}
.algorithm-lab-faq .algorithm-lab-faq__title {
  color: var(--lab-navy);
  font-size: min(100vw * 0.0211640212, 38.5185185185px);
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-faq .algorithm-lab-faq__title {
    font-size: calc(100vw * 0.0747663551);
    line-height: calc(100vw * 0.1121495327);
  }
}
.algorithm-lab-faq .algorithm-lab-faq__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: min(100vw * 0.0145502646, 26.4814814815px);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-faq .algorithm-lab-faq__list {
    margin-top: calc(100vw * 0.0934579439);
    gap: calc(100vw * 0.0981308411);
  }
}
.algorithm-lab-faq .algorithm-lab-faq__item {
  padding-bottom: min(100vw * 0.0145502646, 26.4814814815px);
  border-bottom: 1px solid #cfd8e3;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-faq .algorithm-lab-faq__item {
    padding-bottom: calc(100vw * 0.0981308411);
    border-bottom: 1px solid #2B3F5C;
  }
}
.algorithm-lab-faq .algorithm-lab-faq__question,
.algorithm-lab-faq .algorithm-lab-faq__answer {
  display: grid;
  grid-template-columns: min(100vw * 0.0158730159, 28.8888888889px) 1fr;
  gap: min(100vw * 0.0092592593, 16.8518518519px);
  color: var(--lab-navy);
  font-size: min(100vw * 0.0132275132, 24.0740740741px);
  font-weight: 700;
  line-height: 2;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-faq .algorithm-lab-faq__question,
  .algorithm-lab-faq .algorithm-lab-faq__answer {
    grid-template-columns: calc(100vw * 0.0560747664) 1fr;
    gap: calc(100vw * 0.0373831776);
    font-size: calc(100vw * 0.046728972);
    line-height: calc(100vw * 0.0934579439);
  }
}
.algorithm-lab-faq .algorithm-lab-faq__question span,
.algorithm-lab-faq .algorithm-lab-faq__answer span {
  font-family: "Inter", sans-serif;
  font-size: min(100vw * 0.0158730159, 28.8888888889px);
  font-weight: 600;
  line-height: 1;
  -ms-flex-item-align: start;
      align-self: start;
  padding-top: min(100vw * 0.0052910053, 9.6296296296px);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-faq .algorithm-lab-faq__question span,
  .algorithm-lab-faq .algorithm-lab-faq__answer span {
    font-size: calc(100vw * 0.0560747664);
    position: relative;
    top: calc(100vw * 0.0210280374);
  }
}
.algorithm-lab-faq .algorithm-lab-faq__answer {
  margin-top: min(100vw * 0.0105820106, 19.2592592593px);
  font-size: min(100vw * 0.0119047619, 21.6666666667px);
  font-weight: 400;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-faq .algorithm-lab-faq__answer {
    margin-top: calc(100vw * 0.0373831776);
    font-size: calc(100vw * 0.0420560748);
  }
}
.algorithm-lab-faq .algorithm-lab-faq__answer span {
  font-weight: 400;
}

.algorithm-lab-download {
  padding: min(100vw * 0.0740740741, 134.8148148148px) 0;
  background: #f4f8fc;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-download {
    padding: calc(100vw * 0.2056074766) 0;
  }
}
.algorithm-lab-download .algorithm-lab-download__inner {
  display: grid;
  grid-template-columns: min(100vw * 0.2248677249, 409.2592592593px) 1fr;
  gap: min(100vw * 0.0383597884, 69.8148148148px);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-download .algorithm-lab-download__inner {
    display: block;
  }
}
.algorithm-lab-download .algorithm-lab-download__title {
  color: var(--lab-navy);
  font-size: min(100vw * 0.0211640212, 38.5185185185px);
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-download .algorithm-lab-download__title {
    font-size: calc(100vw * 0.0747663551);
    line-height: 1.45;
  }
}
.algorithm-lab-download .algorithm-lab-download__form {
  width: min(100%, 866px);
  padding: 48px 50px 64px;
  border: 0;
  background: #fff;
  -webkit-box-shadow: 0 8px 24px rgba(41, 60, 84, 0.08);
          box-shadow: 0 8px 24px rgba(41, 60, 84, 0.08);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-download .algorithm-lab-download__form {
    width: calc(100vw * 0.8761682243);
    margin: calc(100vw * 0.0654205607) auto 0;
    padding: calc(100vw * 0.0420560748) calc(100vw * 0.0327102804);
  }
}
.algorithm-lab-download .wpcf7-form {
  display: grid;
  gap: 22px;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-download .wpcf7-form {
    gap: calc(100vw * 0.0327102804);
  }
}
.algorithm-lab-download .algorithm-lab-download__fields {
  display: grid;
  gap: 22px;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-download .algorithm-lab-download__fields {
    gap: calc(100vw * 0.0327102804);
  }
}
.algorithm-lab-download .algorithm-lab-download__row {
  display: grid;
  gap: 24px;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-download .algorithm-lab-download__row {
    gap: calc(100vw * 0.0327102804);
  }
}
.algorithm-lab-download .algorithm-lab-download__row--half {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-download .algorithm-lab-download__row--half {
    grid-template-columns: 1fr;
  }
}
.algorithm-lab-download .algorithm-lab-download__field {
  display: block;
}
.algorithm-lab-download .algorithm-lab-download__required {
  color: #df382f;
}
.algorithm-lab-download .algorithm-lab-download__privacy {
  color: #333;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-download .algorithm-lab-download__privacy {
    font-size: calc(100vw * 0.0257009346);
  }
}
.algorithm-lab-download .algorithm-lab-download__privacy label {
  display: inline;
  font-size: inherit;
  font-weight: inherit;
}
.algorithm-lab-download .algorithm-lab-download__privacy a {
  color: #0645ff;
  text-decoration: underline;
}
.algorithm-lab-download .algorithm-lab-download__submit {
  text-align: center;
}
.algorithm-lab-download .wpcf7-form-control-wrap {
  display: block;
}
.algorithm-lab-download .wpcf7-form p {
  margin: 0;
}
.algorithm-lab-download .wpcf7-form label {
  color: #333;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-download .wpcf7-form label {
    font-size: calc(100vw * 0.0280373832);
  }
}
.algorithm-lab-download .wpcf7-form .algorithm-lab-download__privacy label {
  display: inline;
  font-size: inherit;
  font-weight: inherit;
}
.algorithm-lab-download input:not([type=checkbox]):not([type=radio]):not([type=submit]),
.algorithm-lab-download textarea,
.algorithm-lab-download select {
  width: 100%;
  min-height: 43px;
  margin-top: 6px;
  padding: 6px 14px;
  border: 1px solid #999;
  border-radius: 2px;
  background: #f4f8fc;
  color: #666;
  font-size: 20px;
  line-height: 1.4;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-download input:not([type=checkbox]):not([type=radio]):not([type=submit]),
  .algorithm-lab-download textarea,
  .algorithm-lab-download select {
    min-height: calc(100vw * 0.0981308411);
    margin-top: calc(100vw * 0.0093457944);
    padding: calc(100vw * 0.0186915888) calc(100vw * 0.023364486);
    font-size: calc(100vw * 0.0280373832);
  }
}
.algorithm-lab-download textarea {
  min-height: 67px;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-download textarea {
    min-height: calc(100vw * 0.1869158879);
  }
}
.algorithm-lab-download input[type=submit],
.algorithm-lab-download button[type=submit] {
  display: block;
  width: 250px;
  min-height: 54px;
  margin: 12px auto 0;
  border: 0;
  border-radius: 4px;
  background: #30427f;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-download input[type=submit],
  .algorithm-lab-download button[type=submit] {
    width: calc(100vw * 0.4672897196);
    min-height: calc(100vw * 0.1121495327);
    margin-top: calc(100vw * 0.0186915888);
    font-size: calc(100vw * 0.0327102804);
  }
}

.algorithm-lab-loogia {
  padding: min(100vw * 0.037037037, 67.4074074074px) 0;
  background: #fff;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-loogia {
    padding: calc(100vw * 0.0934579439) 0 calc(100vw * 0.1682242991);
  }
}
.algorithm-lab-loogia .algorithm-lab-loogia__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: min(100vw * 0.037037037, 67.4074074074px);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-loogia .algorithm-lab-loogia__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(100vw * 0.0560747664);
  }
}
.algorithm-lab-loogia .algorithm-lab-loogia__title {
  color: var(--lab-navy);
  font-size: min(100vw * 0.0158730159, 28.8888888889px);
  font-weight: 400;
  line-height: 2;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-loogia .algorithm-lab-loogia__title {
    font-size: calc(100vw * 0.046728972);
    line-height: calc(100vw * 0.0934579439);
  }
}
.algorithm-lab-loogia .algorithm-lab-loogia__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: min(100vw * 0.1818783069, 331.0185185185px);
  text-decoration: none;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-loogia .algorithm-lab-loogia__link {
    width: calc(100vw * 0.6425233645);
  }
}
.algorithm-lab-loogia .algorithm-lab-loogia__image {
  width: 100%;
  height: auto;
}

.algorithm-lab-company {
  padding: min(100vw * 0.0740740741, 134.8148148148px) 0;
  background: #F9FBFF;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-company {
    padding: calc(100vw * 0.2242990654) 0 calc(100vw * 0.1682242991);
  }
}
.algorithm-lab-company .algorithm-lab-company__inner {
  display: grid;
  grid-template-columns: min(100vw * 0.2248677249, 409.2592592593px) 1fr;
  gap: min(100vw * 0.0383597884, 69.8148148148px);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-company .algorithm-lab-company__inner {
    display: block;
  }
}
.algorithm-lab-company .algorithm-lab-company__title {
  color: var(--lab-navy);
  font-size: min(100vw * 0.0211640212, 38.5185185185px);
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-company .algorithm-lab-company__title {
    font-size: calc(100vw * 0.0747663551);
    line-height: calc(100vw * 0.1121495327);
  }
}
.algorithm-lab-company .algorithm-lab-company__list {
  border-top: 1px solid var(--lab-line);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-company .algorithm-lab-company__list {
    margin-top: calc(100vw * 0.0934579439);
  }
}
.algorithm-lab-company .algorithm-lab-company__row {
  display: grid;
  grid-template-columns: min(100vw * 0.0767195767, 139.6296296296px) 1fr;
  gap: min(100vw * 0.0105820106, 19.2592592593px);
  padding: min(100vw * 0.0264550265, 48.1481481481px) 0;
  border-bottom: 1px solid var(--lab-line);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-company .algorithm-lab-company__row {
    grid-template-columns: calc(100vw * 0.1962616822) 1fr;
    gap: calc(100vw * 0.0373831776);
    padding: calc(100vw * 0.046728972) 0;
  }
}
.algorithm-lab-company .algorithm-lab-company__row dt {
  color: var(--lab-navy);
  font-size: min(100vw * 0.0105820106, 19.2592592593px);
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-company .algorithm-lab-company__row dt {
    font-size: calc(100vw * 0.0373831776);
    line-height: calc(100vw * 0.0560747664);
  }
}
.algorithm-lab-company .algorithm-lab-company__row dd {
  color: var(--lab-navy);
  font-size: min(100vw * 0.0105820106, 19.2592592593px);
  font-weight: 400;
  line-height: 2;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-company .algorithm-lab-company__row dd {
    font-size: calc(100vw * 0.0373831776);
    line-height: calc(100vw * 0.0747663551);
  }
}

.algorithm-lab-shareholders {
  padding: min(100vw * 0.0740740741, 134.8148148148px) 0;
  background: #F9FBFF;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-shareholders {
    padding: calc(100vw * 0.1869158879) 0;
  }
}
.algorithm-lab-shareholders .algorithm-lab-shareholders__inner {
  display: grid;
  grid-template-columns: min(100vw * 0.2248677249, 409.2592592593px) 1fr;
  gap: min(100vw * 0.0383597884, 69.8148148148px);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-shareholders .algorithm-lab-shareholders__inner {
    display: block;
  }
}
.algorithm-lab-shareholders .algorithm-lab-shareholders__title {
  color: var(--lab-navy);
  font-size: min(100vw * 0.0211640212, 38.5185185185px);
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-shareholders .algorithm-lab-shareholders__title {
    font-size: calc(100vw * 0.0747663551);
    line-height: calc(100vw * 0.1121495327);
  }
}
.algorithm-lab-shareholders .algorithm-lab-shareholders__grid {
  display: grid;
  grid-template-columns: repeat(4, min(100vw * 0.1388888889, 252.7777777778px));
  -webkit-column-gap: min(100vw * 0.0132275132, 24.0740740741px);
     -moz-column-gap: min(100vw * 0.0132275132, 24.0740740741px);
          column-gap: min(100vw * 0.0132275132, 24.0740740741px);
  row-gap: min(100vw * 0.0496031746, 90.2777777778px);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-shareholders .algorithm-lab-shareholders__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: calc(100vw * 0.0747663551) calc(100vw * 0.0373831776);
    margin-top: calc(100vw * 0.0934579439);
  }
}
.algorithm-lab-shareholders .algorithm-lab-shareholders__item {
  min-width: 0;
}
.algorithm-lab-shareholders .algorithm-lab-shareholders__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: min(100vw * 0.1388888889, 252.7777777778px);
  height: min(100vw * 0.0707671958, 128.7962962963px);
  border: 1px solid #DFDFDF;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-shareholders .algorithm-lab-shareholders__logo {
    width: 100%;
    height: auto;
    aspect-ratio: 210/107;
  }
}
.algorithm-lab-shareholders .algorithm-lab-shareholders__logo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.algorithm-lab-shareholders .algorithm-lab-shareholders__name {
  margin-top: min(100vw * 0.0092592593, 16.8518518519px);
  color: var(--lab-navy);
  font-size: min(100vw * 0.0092592593, 16.8518518519px);
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-shareholders .algorithm-lab-shareholders__name {
    margin-top: calc(100vw * 0.023364486);
    font-size: calc(100vw * 0.0327102804);
    line-height: calc(100vw * 0.0514018692);
    overflow-wrap: anywhere;
  }
}

.algorithm-lab-footer {
  background: #F9FBFF;
  color: var(--lab-navy);
}
.algorithm-lab-footer .algorithm-lab-footer__inner {
  width: 100%;
  padding: 0;
}
.algorithm-lab-footer .algorithm-lab-footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  gap: 8px;
  width: 196px;
  height: 48px;
  margin: 0 min(100vw * 0.0740740741, 134.8148148148px) min(100vw * 0.0423280423, 77.037037037px) auto;
  padding: 8px 16px;
  border: 1px solid #d3dae8;
  border-radius: 4px;
  background: #fff;
  color: var(--lab-navy);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  text-decoration: none;
  white-space: nowrap;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-footer .algorithm-lab-footer__top {
    width: calc(100vw * 0.4813084112);
    min-height: calc(100vw * 0.1121495327);
    margin: 0 calc(100vw * 0.046728972) calc(100vw * 0.0934579439) auto;
    padding: calc(100vw * 0.0186915888) calc(100vw * 0.0373831776);
    font-size: calc(100vw * 0.0373831776);
  }
}
.algorithm-lab-footer .algorithm-lab-footer__top::after {
  content: "";
  display: inline-block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--lab-navy);
  border-right: 1px solid var(--lab-navy);
  -webkit-transform: rotate(-45deg) translateY(2px);
          transform: rotate(-45deg) translateY(2px);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-footer .algorithm-lab-footer__top::after {
    width: calc(100vw * 0.023364486);
    height: calc(100vw * 0.023364486);
  }
}
.algorithm-lab-footer .algorithm-lab-footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: min(100vw * 0.0641534392, 116.7592592593px);
  padding: min(100vw * 0.0264550265, 48.1481481481px);
  background: var(--lab-navy);
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-footer .algorithm-lab-footer__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: calc(100vw * 0.0607476636) calc(100vw * 0.046728972) calc(100vw * 0.0747663551);
  }
}
.algorithm-lab-footer .algorithm-lab-footer__copyright,
.algorithm-lab-footer .algorithm-lab-footer__links a {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}
.algorithm-lab-footer .algorithm-lab-footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-footer .algorithm-lab-footer__links {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(100vw * 0.0280373832);
    margin-bottom: calc(100vw * 0.0654205607);
  }
}
.algorithm-lab-footer .algorithm-lab-footer__links a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
.algorithm-lab-footer .algorithm-lab-footer__links a::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6M15 3h6v6M10 14 21 3' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/contain;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6M15 3h6v6M10 14 21 3' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/contain;
}
@media screen and (max-width: 767.98px) {
  .algorithm-lab-footer .algorithm-lab-footer__copyright {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    text-align: center;
    font-size: calc(100vw * 0.0327102804);
    margin: auto;
  }
}/*# sourceMappingURL=algorithm-lab.css.map */