@charset "UTF-8";

/* https://piccalil.li/blog/a-modern-css-reset/ */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Codex capability guide */
.codex-field-guide {
  max-width: 1280px;
  margin: 30px auto 0;
  overflow: hidden;
  color: #102848;
  background: #fff;
}

.codex-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  grid-template-rows: minmax(0, 1fr);
  width: 100%;
  height: calc(100svh - 80px);
  min-height: 560px;
  overflow: hidden;
  background: #edf5ff;
}

.codex-hero__background {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  border-left: 1px solid #d4e5f8;
}

.codex-hero__copy {
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  width: min(100%, 1040px);
  padding: clamp(40px, 6vw, 108px);
  margin: 0 auto;
  color: #05256c;
  text-align: center;
}

.codex-hero__eyebrow {
  margin: 0;
  font-size: clamp(14px, 1.21vw, 24px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.03em;
  color: #1976e8;
}

.codex-hero__title {
  margin: 6px 0 0;
  font-size: clamp(35px, 3.43vw, 67px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #05256c;
}

.codex-hero__underline {
  display: block;
  width: clamp(48px, 3.71vw, 73px);
  height: clamp(4px, 0.39vw, 7px);
  margin: clamp(7px, 0.63vw, 13px) auto 0;
  background: #2383ee;
  border-radius: 999px;
}

.codex-hero__description {
  margin: clamp(13px, 1.16vw, 22px) 0 0;
  font-size: clamp(14px, 1.16vw, 22px);
  font-weight: 500;
  line-height: 1.78;
  letter-spacing: 0.01em;
  color: #082968;
}

.codex-hero__description span {
  display: block;
  max-width: 100%;
  font: inherit;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
}

@media screen and (min-width: 1025px) {
  .codex-hero {
    display: block;
    height: max(320px, calc(40vh - 32px));
    min-height: 0;
  }

  .codex-hero__background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: center;
    border-left: 0;
  }

  .codex-hero__copy {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(80%, 1040px);
    padding: 0;
    margin: 0;
    transform: translate(-50%, -50%);
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .codex-hero {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(0, 2fr) minmax(0, 3fr);
  }

  .codex-hero__background {
    grid-column: 1;
    grid-row: 1;
    object-position: right center;
    border-bottom: 1px solid #d4e5f8;
    border-left: 0;
  }

  .codex-hero__copy {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    padding: 28px 48px;
  }

  .codex-hero__eyebrow {
    font-size: clamp(12px, 1.33vw, 14px);
  }

  .codex-hero__title {
    margin-top: 4px;
    font-size: clamp(27px, 3.5vw, 35px);
  }

  .codex-hero__underline {
    height: 4px;
    margin-top: 7px;
  }

  .codex-hero__description {
    margin-top: 10px;
    font-size: clamp(12px, 1.25vw, 14px);
    line-height: 1.6;
  }
}

@media screen and (max-width: 767px) {
  .codex-hero {
    display: block;
    height: 30svh;
    min-height: 0;
  }

  .codex-hero__background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-left: 0;
  }

  .codex-hero__copy {
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% - 24px);
    padding: 0;
    margin: 0;
    transform: translate(-50%, -50%);
  }

  .codex-hero__eyebrow {
    font-size: clamp(11px, 3.5vw, 14px);
  }

  .codex-hero__title {
    margin-top: 5px;
    font-size: clamp(29px, 9vw, 38px);
  }

  .codex-hero__underline {
    width: 45px;
    height: 4px;
    margin-top: 7px;
  }

  .codex-hero__description {
    margin-top: clamp(9px, 2svh, 17px);
    font-size: clamp(11px, 3.4vw, 14px);
    font-weight: 500;
    line-height: 1.65;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .codex-hero__description span {
    display: block;
    word-break: break-all;
  }
}

.codex-field-guide__hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 480px;
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid #dce8f6;
}

.codex-field-guide__hero--image {
  display: block;
  min-height: 0;
  border-bottom: 0;
}

.codex-field-guide__hero--image::before {
  display: none;
}

.codex-field-guide__heroReference {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1672 / 941;
  object-fit: contain;
}

.codex-field-guide__hero::before {
  position: absolute;
  top: -155px;
  right: -170px;
  width: 760px;
  height: 660px;
  content: "";
  background: #edf5ff;
  border-radius: 48% 0 0 58%;
}

.codex-field-guide__heroCopy {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  padding: 22px 42px 26px 54px;
}

.codex-field-guide__badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 14px;
  margin: 0;
  color: #fff;
  background: #1769d2;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.codex-field-guide__hero h2 {
  max-width: 650px;
  margin: 14px 0 0;
  color: #071f47;
  font-size: 45px;
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: 0;
}

.codex-field-guide__lead {
  max-width: 560px;
  margin: 14px 0 0;
  color: #314a6c;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
}

.codex-field-guide__metrics {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  grid-column: 1 / -1;
  grid-row: 2;
  width: 100%;
  padding: 4px 48px 18px;
  margin: 0;
  background: rgba(239, 247, 255, 0.92);
  border-top: 0;
}

.codex-field-guide__metrics div {
  position: relative;
  min-width: 0;
  padding: 13px 52px 9px;
  text-align: center;
}

.codex-field-guide__metrics div + div {
  border-left: 0;
}

.codex-field-guide__metrics div::before,
.codex-field-guide__metrics div::after {
  position: absolute;
  top: 18px;
  width: 10px;
  height: 48px;
  content: "";
  background: radial-gradient(ellipse at center, #2f80ed 0 38%, transparent 42%) 0 0 / 7px 10px repeat-y;
  transform: rotate(-13deg);
}

.codex-field-guide__metrics div::before {
  left: 30px;
}

.codex-field-guide__metrics div::after {
  right: 30px;
  transform: scaleX(-1) rotate(-13deg);
}

.codex-field-guide__metrics dt {
  color: #375375;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.codex-field-guide__metrics dd {
  margin: 2px 0 0;
  color: #0e60c7;
  font-size: 31px;
  font-weight: 800;
  line-height: 1.2;
}

.codex-field-guide__metrics dd span {
  margin-left: 3px;
  font-size: 15px;
  font-weight: 700;
}

.codex-field-guide__source {
  position: absolute;
  bottom: 5px;
  left: 138px;
  z-index: 6;
  margin: 0;
  color: #6c7d91;
  font-size: 9px;
  line-height: 1.5;
}

.codex-field-guide__heroVisual {
  position: relative;
  z-index: 2;
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  min-height: 380px;
  margin: 0;
  overflow: hidden;
}

.codex-field-guide__heroVisual::before {
  position: absolute;
  right: -125px;
  bottom: -175px;
  width: 570px;
  height: 520px;
  content: "";
  background: rgba(213, 232, 255, 0.75);
  border-radius: 50%;
}

.codex-field-guide__heroVisual img {
  position: absolute;
  right: 50px;
  bottom: -155px;
  z-index: 3;
  width: 346px;
  height: auto;
  mix-blend-mode: multiply;
}

.codex-field-guide__workspace {
  position: absolute;
  right: -2px;
  bottom: 10px;
  z-index: 2;
  width: 520px;
  height: 128px;
}

.codex-field-guide__terminal,
.codex-field-guide__dashboard {
  position: absolute;
  bottom: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 83, 156, 0.28);
  border-radius: 4px;
  box-shadow: 0 8px 22px rgba(42, 88, 150, 0.1);
}

.codex-field-guide__terminal {
  left: 0;
  width: 265px;
  height: 104px;
  padding: 13px 15px;
  color: #7dd9bc;
  background: #102848;
}

.codex-field-guide__terminal > span {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 4px;
  background: #77b7ee;
  border-radius: 50%;
}

.codex-field-guide__terminal code {
  display: block;
  margin-top: 10px;
  font-size: 10px;
  line-height: 1.65;
}

.codex-field-guide__dashboard {
  right: 0;
  display: flex;
  gap: 10px;
  align-items: flex-end;
  width: 250px;
  height: 116px;
  padding: 26px 22px 18px;
  background: rgba(255, 255, 255, 0.9);
}

.codex-field-guide__dashboard::before {
  position: absolute;
  top: 15px;
  right: 18px;
  left: 18px;
  height: 5px;
  content: "";
  background: #d7e7fa;
  border-radius: 2px;
}

.codex-field-guide__dashboard i {
  flex: 1;
  height: 30%;
  background: #8dc2f7;
  border-radius: 2px 2px 0 0;
}

.codex-field-guide__dashboard i:nth-child(2) {
  height: 45%;
}

.codex-field-guide__dashboard i:nth-child(3) {
  height: 62%;
}

.codex-field-guide__dashboard i:nth-child(4) {
  height: 82%;
  background: #2f80ed;
}

.codex-field-guide__block {
  padding: 36px 42px 40px;
  border-bottom: 1px solid #dce8f6;
}

.codex-field-guide__block--tint {
  background: #f5f9ff;
}

.codex-field-guide__block--overview {
  background: #fff;
}

.codex-overview-code {
  display: grid;
  gap: 64px;
  padding: 50px 42px 58px;
  background:
    radial-gradient(circle at 92% 4%, rgba(63, 139, 251, 0.08), transparent 18%),
    #f7faff;
  border-bottom: 1px solid #dce8f6;
}

.codex-overview-code__heading {
  margin-bottom: 30px;
  text-align: center;
}

.codex-overview-code__heading > div {
  display: grid;
  grid-template-columns: minmax(48px, 1fr) auto minmax(48px, 1fr);
  gap: 28px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.codex-overview-code__heading span {
  height: 1px;
  background: #b7d0ef;
}

.codex-overview-code__heading h3 {
  margin: 0;
  color: #082b66;
  font-size: clamp(27px, 2.7vw, 40px);
  line-height: 1.3;
  font-weight: 800;
}

.codex-overview-code__heading p {
  margin: 14px 0 0;
  color: #526b8a;
  font-size: clamp(14px, 1.3vw, 18px);
  line-height: 1.7;
  font-weight: 600;
}

.codex-overview-code__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  max-width: 1180px;
  padding: 0;
  margin: 0 auto;
  list-style: none;
}

.codex-overview-code__steps > li {
  position: relative;
  min-width: 0;
  padding: 22px 22px 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #d5e5f7;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(35, 86, 151, 0.07);
}

.codex-overview-code__steps > li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -26px;
  width: 0;
  height: 0;
  content: "";
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 13px solid #1477ee;
  transform: translateY(-50%);
}

.codex-overview-code__steps header {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.codex-overview-code__steps header span {
  display: grid;
  flex: 0 0 42px;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: linear-gradient(145deg, #2d8cff, #0563e9);
  border-radius: 50%;
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
}

.codex-overview-code__steps h4 {
  margin: 0;
  color: #092d69;
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.4;
  font-weight: 800;
}

.codex-overview-code__steps > li > div {
  display: grid;
  grid-template-columns: minmax(110px, 0.8fr) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-top: 18px;
}

.codex-overview-code__steps img {
  display: block;
  width: 100%;
  height: 118px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.codex-overview-code__steps p {
  margin: 0;
  color: #536985;
  font-size: 13px;
  line-height: 1.8;
  font-weight: 600;
}

.codex-overview-code__surfaces {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.codex-overview-code__surfaces article {
  display: flex;
  min-width: 0;
  min-height: 332px;
  padding: 22px 20px 24px;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #d5e5f7;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(35, 86, 151, 0.07);
}

.codex-overview-code__surfaces h4 {
  margin: 0;
  color: #0f70e9;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.4;
  font-weight: 800;
  text-align: center;
}

.codex-overview-code__surfaces img {
  display: block;
  width: 100%;
  height: 136px;
  margin: 10px auto 12px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.codex-overview-code__surfaces ul {
  display: grid;
  gap: 7px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.codex-overview-code__surfaces li {
  position: relative;
  padding-left: 26px;
  color: #526985;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 600;
}

.codex-overview-code__surfaces li::before {
  position: absolute;
  top: 0.12em;
  left: 0;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  content: "✓";
  color: #fff;
  background: #1477ee;
  border-radius: 50%;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
}

@media screen and (max-width: 900px) {
  .codex-overview-code {
    gap: 48px;
    padding: 40px 24px 46px;
  }

  .codex-overview-code__steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .codex-overview-code__steps > li:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -16px;
    border-top: 12px solid #1477ee;
    border-right: 10px solid transparent;
    border-bottom: 0;
    border-left: 10px solid transparent;
    transform: translateX(50%);
  }

  .codex-overview-code__surfaces {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 767px) {
  .codex-overview-code {
    gap: 40px;
    padding: 34px 14px 40px;
  }

  .codex-overview-code__heading {
    margin-bottom: 22px;
  }

  .codex-overview-code__heading > div {
    gap: 12px;
  }

  .codex-overview-code__heading h3 {
    font-size: 24px;
  }

  .codex-overview-code__heading p {
    margin-top: 10px;
    font-size: 13px;
  }

  .codex-overview-code__steps > li {
    padding: 18px 16px 20px;
  }

  .codex-overview-code__steps > li > div {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .codex-overview-code__steps img {
    height: 92px;
  }

  .codex-overview-code__steps p {
    font-size: 12px;
  }

  .codex-overview-code__surfaces {
    grid-template-columns: 1fr;
  }

  .codex-overview-code__surfaces article {
    min-height: 0;
  }
}

.codex-field-guide__block--capabilities {
  padding-top: 40px;
  padding-bottom: 42px;
  background:
    radial-gradient(circle at 90% 8%, rgba(78, 151, 255, 0.08), transparent 22%),
    linear-gradient(180deg, #f8fbff 0%, #f3f8ff 100%);
}

.codex-capabilities-mobileArtwork {
  width: 100%;
  height: auto;
}

.codex-field-guide__block--capabilities .codex-field-guide__sectionHeading {
  display: block;
  margin-bottom: 28px;
}

.codex-field-guide__block--capabilities .codex-field-guide__sectionHeading span {
  display: none;
}

.codex-field-guide__block--capabilities .codex-field-guide__sectionHeading h3 {
  font-size: clamp(26px, 2.4vw, 38px);
}

.codex-field-guide__block--capabilities .codex-field-guide__sectionHeading h3::after {
  display: block;
  width: 52px;
  height: 5px;
  margin: 18px auto 0;
  content: "";
  background: #2478f3;
  border-radius: 999px;
}

.codex-field-guide__sectionHeading {
  display: grid;
  grid-template-columns: minmax(20px, 1fr) auto minmax(20px, 1fr);
  gap: 16px;
  align-items: center;
  max-width: 860px;
  margin: 0 auto 26px;
}

.codex-field-guide__sectionHeading span {
  height: 1px;
  background: #b4cae5;
}

.codex-field-guide__sectionHeading h3 {
  margin: 0;
  color: #0b2860;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
}

.codex-capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1400px;
  margin: 0 auto;
}

.codex-capability-card {
  min-width: 0;
  padding: 10px 0 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(214, 227, 244, 0.82);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(35, 86, 151, 0.08);
}

.codex-capability-card > img {
  display: block;
  width: calc(100% - 20px);
  height: auto;
  aspect-ratio: 741 / 484;
  margin: 0 10px;
  object-fit: cover;
  border-radius: 9px;
}

.codex-capability-card h4 {
  display: flex;
  align-items: center;
  min-height: 36px;
  margin: 14px 16px 0;
  color: #0b2860;
  font-size: clamp(15px, 1.2vw, 19px);
  font-weight: 800;
  line-height: 1.35;
  text-align: left;
}

.codex-capability-card p {
  margin: 10px 16px 0;
  color: #4a5f7a;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.7;
}

.codex-operation-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.codex-operation-flow li {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  gap: 8px 12px;
  align-items: center;
  min-width: 0;
  min-height: 132px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid #d7e4f2;
  border-radius: 6px;
}

.codex-operation-flow li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -29px;
  width: 0;
  height: 0;
  content: "";
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 11px solid #1769d2;
  transform: translateY(-50%);
}

.codex-operation-flow__heading {
  display: flex;
  grid-column: 1 / -1;
  gap: 7px;
  align-items: center;
  justify-content: center;
}

.codex-operation-flow__number {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 24px;
  height: 24px;
  color: #fff;
  background: #1769d2;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
}

.codex-operation-flow__image {
  grid-column: 1;
  grid-row: 2;
  width: 54px;
  height: 48px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.codex-operation-flow h4 {
  margin: 0;
  color: #0b2860;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
}

.codex-operation-flow p {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  color: #50637c;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.65;
}

.codex-surface-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.codex-surface-grid article {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  min-width: 0;
  min-height: 180px;
  padding: 16px 18px 14px;
  background: #fff;
  border: 1px solid #d8e5f3;
  border-radius: 6px;
}

.codex-surface-grid h4 {
  margin: 0;
  color: #1769d2;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
}

.codex-surface-grid article > img {
  display: block;
  width: 60px;
  height: 44px;
  margin: 10px auto 8px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.codex-surface-grid ul {
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}

.codex-surface-grid li {
  position: relative;
  padding-left: 10px;
  color: #50637c;
  font-size: 10.5px;
  font-weight: 600;
  line-height: 1.6;
}

.codex-surface-grid li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  background: #2f80ed;
  transform: rotate(45deg);
}

.codex-difference-table-wrap {
  overflow-x: auto;
  border: 1px solid #d5e2f0;
  border-radius: 6px;
}

.codex-difference-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  color: #2e4767;
  background: #fff;
  font-size: 12px;
  line-height: 1.55;
}

.codex-difference-table th,
.codex-difference-table td {
  padding: 13px 16px;
  border-right: 1px solid #dfe8f3;
  border-bottom: 1px solid #dfe8f3;
  text-align: center;
}

.codex-difference-table tr:last-child th,
.codex-difference-table tr:last-child td {
  border-bottom: 0;
}

.codex-difference-table th:last-child,
.codex-difference-table td:last-child {
  border-right: 0;
}

.codex-difference-table thead th {
  color: #0b2860;
  background: #eaf3ff;
  font-size: 13px;
  font-weight: 800;
}

.codex-difference-table tbody th {
  width: 130px;
  color: #0b2860;
  background: #f8fbff;
  font-weight: 800;
}

.codex-difference-table .is-codex {
  color: #0b2860;
  background: #eef7ff;
  font-weight: 800;
}

.codex-difference-table thead .is-codex {
  color: #fff;
  background: #1769d2;
}

.codex-impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.codex-impact-grid article {
  min-width: 0;
  padding: 22px 20px 18px;
  background: #fff;
  border: 1px solid #d6e4f3;
  border-radius: 6px;
  box-shadow: 0 8px 22px rgba(42, 88, 150, 0.08);
}

.codex-impact-grid h4 {
  margin: 0;
  color: #0f61c8;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
}

.codex-impact-grid__change {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  padding: 14px 0 10px;
}

.codex-impact-grid__change span {
  color: #4d617b;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.codex-impact-grid__change small {
  display: block;
  color: #77879a;
  font-size: 9px;
}

.codex-impact-grid__change b {
  display: block;
  color: #0b2860;
  font-size: 18px;
}

.codex-impact-grid__change .is-after b {
  color: #1769d2;
}

.codex-impact-grid__change i {
  color: #2f80ed;
  font-size: 18px;
  font-style: normal;
}

.codex-impact-grid > article > strong {
  display: block;
  color: #1769d2;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
}

.codex-impact-grid > article > strong span {
  margin-left: 3px;
  font-size: 14px;
}

.codex-impact-grid article > p {
  margin: 10px 0 0;
  color: #52657c;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.65;
}

@media screen and (max-width: 900px) {
  .codex-field-guide__hero {
    grid-template-columns: minmax(0, 1fr) 320px;
  }

  .codex-field-guide__heroCopy {
    padding: 22px 24px 24px 30px;
  }

  .codex-field-guide__hero h2 {
    font-size: 34px;
  }

  .codex-field-guide__metrics {
    padding-right: 18px;
    padding-left: 18px;
  }

  .codex-field-guide__metrics div {
    padding-right: 30px;
    padding-left: 30px;
  }

  .codex-field-guide__metrics div::before {
    left: 10px;
  }

  .codex-field-guide__metrics div::after {
    right: 10px;
  }

  .codex-field-guide__metrics dd {
    font-size: 25px;
  }

  .codex-field-guide__heroVisual img {
    right: 0;
    width: 320px;
  }

  .codex-field-guide__workspace {
    right: -150px;
  }

  .codex-capability-grid,
  .codex-surface-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .codex-operation-flow {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .codex-operation-flow li:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -14px;
    width: 0;
    height: 0;
    border-top: 10px solid #1769d2;
    border-right: 8px solid transparent;
    border-bottom: 0;
    border-left: 8px solid transparent;
    transform: translateX(50%);
  }

  .codex-impact-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  .codex-field-guide {
    margin-top: 20px;
  }

  .codex-field-guide__hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto 260px auto auto;
  }

  .codex-field-guide__heroCopy {
    grid-column: 1;
    grid-row: 1;
    padding: 24px 18px;
  }

  .codex-field-guide__badge {
    font-size: 11px;
  }

  .codex-field-guide__hero h2 {
    margin-top: 12px;
    font-size: 30px;
  }

  .codex-field-guide__lead {
    font-size: 14px;
  }

  .codex-field-guide__metrics {
    grid-column: 1;
    grid-row: 3;
    grid-template-columns: 1fr;
    width: auto;
    padding: 0;
    margin: 0 18px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid #c9dcf2;
  }

  .codex-field-guide__heroVisual {
    grid-column: 1;
    grid-row: 2;
    min-height: 260px;
  }

  .codex-field-guide__heroVisual::before {
    right: -105px;
    bottom: -190px;
  }

  .codex-field-guide__heroVisual img {
    right: 50%;
    bottom: -205px;
    width: 280px;
    transform: translateX(50%);
  }

  .codex-field-guide__workspace {
    right: 50%;
    bottom: 5px;
    width: 350px;
    height: 88px;
    transform: translateX(50%);
  }

  .codex-field-guide__terminal {
    width: 175px;
    height: 78px;
    padding: 9px 10px;
  }

  .codex-field-guide__terminal code {
    margin-top: 5px;
    font-size: 7px;
  }

  .codex-field-guide__dashboard {
    width: 184px;
    height: 84px;
    padding: 22px 14px 12px;
  }

  .codex-field-guide__metrics div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 12px;
  }

  .codex-field-guide__metrics div + div {
    border-top: 1px solid #c9dcf2;
  }

  .codex-field-guide__metrics div::before,
  .codex-field-guide__metrics div::after {
    display: none;
  }

  .codex-field-guide__metrics dd {
    flex: 0 0 auto;
    font-size: 21px;
  }

  .codex-field-guide__source {
    position: static;
    z-index: auto;
    grid-column: 1;
    grid-row: 4;
    padding: 8px 18px 14px;
  }

  .codex-field-guide__block {
    padding: 28px 14px 30px;
  }

  .codex-field-guide__block--capabilities {
    padding: 0;
    background: #f5f9ff;
  }

  .codex-field-guide__block--capabilities .codex-field-guide__sectionHeading,
  .codex-field-guide__block--capabilities .codex-capability-grid {
    display: none;
  }

  .codex-field-guide__sectionHeading {
    gap: 10px;
    margin-bottom: 20px;
  }

  .codex-field-guide__sectionHeading h3 {
    font-size: 19px;
  }

  .codex-capability-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .codex-surface-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .codex-capability-card {
    display: block;
    padding: 12px 0 22px;
    border-radius: 12px;
  }

  .codex-capability-card > img {
    width: calc(100% - 24px);
    height: auto;
    margin: 0 12px;
    border-radius: 9px;
  }

  .codex-capability-card h4 {
    min-height: 38px;
    margin: 16px 16px 0;
    font-size: 18px;
    text-align: left;
  }

  .codex-capability-card p {
    margin: 10px 16px 0;
    font-size: 13px;
  }

  .codex-operation-flow li {
    grid-template-columns: 50px minmax(0, 1fr);
    padding: 18px 14px;
  }

  .codex-operation-flow__image {
    width: 50px;
    height: 46px;
  }

  .codex-operation-flow h4 {
    font-size: 15px;
  }

  .codex-surface-grid article {
    min-height: 174px;
    padding: 14px 12px 12px;
  }

  .codex-surface-grid h4 {
    font-size: 12px;
  }

  .codex-surface-grid article > img {
    margin-top: 8px;
    margin-bottom: 6px;
  }

  .codex-surface-grid li {
    font-size: 9px;
  }

  .codex-difference-table {
    font-size: 11px;
  }

  .codex-impact-grid article {
    padding: 18px 14px 16px;
  }
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  display: block;
  max-width: 100%;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: "Hiragino Kaku Gothic ProN", Meiryo, "Hiragino Kaku Gothic Pro", "MS PGothic", Helvetica, sans-serif !important;
  color: #01294d;
}

body.noScroll {
  overflow: hidden;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

* {
  min-height: 0;
  padding: 0;
  margin: 0;
  font-size: 16px;
  line-height: 1;
}

main {
  display: block;
  display: flex;
}

.main__inner {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .main__inner {
    width: 100%;
  }
}

@media screen and (max-width: 1280px) {
  .contents {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .contents {
    width: 100%;
  }
}

ul li {
  list-style: none;
}

.floatingButton {
  position: fixed;
  bottom: 0;
  z-index: 15;
  width: 100%;
  visibility: hidden;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: all 0.4s;
}

.floatingButton.isVisible {
  visibility: visible;
  opacity: 1;
}

.floatingButton__inner {
  display: flex;
  justify-content: center;
  padding: 16px 36px;
}

.onlyPc {
  display: block;
}

.onlyPc.--inline {
  display: inline;
}

.onlyPc.--flex {
  display: flex;
}

@media screen and (max-width: 767px) {
  .onlyPc {
    display: none;
  }

  .onlyPc.--inline {
    display: none;
  }

  .onlyPc.--flex {
    display: none;
  }
}

.onlySp {
  display: none;
}

@media screen and (max-width: 767px) {
  .onlySp {
    display: block;
  }

  .onlySp.--inline {
    display: inline;
  }

  .onlySp.--flex {
    display: flex;
  }
}

@keyframes fade-out {
  0% {
    background-color: #c8e6f9;
  }

  100% {
    background-color: #fff;
  }
}

.heading {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.heading__textWrapper {
  margin: 0 auto;
}

.heading__text {
  font-size: 32px;
  line-height: 1.25;
  color: #01294d;
  text-align: center;
  letter-spacing: 0;
}

@media screen and (max-width: 767px) {
  .heading__text {
    font-size: 24px;
  }
}

.heading__text--small {
  font-size: 28px;
}

@media screen and (max-width: 767px) {
  .heading__text--small {
    font-size: 20px;
  }
}

.heading__textEmphasis {
  font-size: 50px;
  line-height: 1.5;
  background: linear-gradient(105deg, #2c83d0 0%, #0065bd 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 767px) {
  .heading__textEmphasis {
    margin-top: 12px;
    font-size: 32px;
  }
}

.heading__separate {
  position: relative;
  width: 62px;
  height: 3px;
  margin-top: 16px;
  background: #bfbfbf;
}

.heading__separate::after {
  position: absolute;
  top: 0;
  left: 25%;
  width: 32px;
  height: 3px;
  content: "";
  background: #3980cb;
}

.heading__note {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 8px;
}

.heading__noteText {
  display: flex;
  align-items: flex-end;
  margin-left: 21px;
  font-weight: 600;
  color: #01294d;
}

@media screen and (max-width: 767px) {
  .heading__noteText {
    font-size: 14px;
  }
}

.heading__noteDecoration--reverse {
  margin-left: 13px;
  transform: scaleX(-1);
}

.heading__noteEmphasis {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
}

.heading__noteEmphasis--blue {
  color: #3980cb;
}

.heading__noteEmphasis--deepBlue {
  color: #1b75c3;
}

.heading__noteEmphasis--large {
  font-size: 28px;
}

@media screen and (max-width: 810px) {
  .heading__noteEmphasis {
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .heading__noteEmphasis {
    font-size: 16px;
  }
}

.heading__noteEmphasisSuffix {
  color: #3980cb;
}

@media screen and (max-width: 767px) {
  .heading__noteEmphasisSuffix {
    font-size: 14px;
  }
}

.heading__noteSuffix {
  align-self: start;
  font-size: 10px;
}

.heading__subText {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 600;
  color: #3980cb;
}

@media screen and (max-width: 767px) {
  .heading__subText {
    font-size: 16px;
  }
}

.header {
  position: sticky;
  top: 0;
  z-index: 300;
  width: 100%;
  background: #fff;
  box-shadow: 0 0 20px rgba(51, 51, 51, 0.16);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding-left: 24px;
}

@media screen and (max-width: 767px) {
  .header__inner {
    height: 54px;
    padding: 0 16px;
  }
}

.header__logoImage {
  display: block;
  transition: all 0.2s;
}

.header__logoLink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #182f3d;
  text-decoration: none;
  white-space: nowrap;
}

.header__logoIcon {
  display: block;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
}

.header__logoText {
  display: block;
  font-family: Arial, "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.header__logoImage--codex {
  width: 260px;
  height: auto;
  max-height: 56px;
  object-fit: contain;
}

@media screen and (max-width: 1280px) {
  .header__logoImage {
    width: 200px;
    height: 23px;
  }

  .header__logoImage--codex {
    width: 190px;
    height: auto;
    max-height: 42px;
  }

  .header__logoIcon {
    width: 34px;
    height: 34px;
  }

  .header__logoText {
    font-size: 23px;
  }
}

@media screen and (max-width: 767px) {
  .header__logoImage--codex {
    width: 162px;
  }

  .header__logoLink {
    gap: 6px;
  }

  .header__logoIcon {
    width: 31px;
    height: 31px;
  }

  .header__logoText {
    font-size: 21px;
  }
}

.header__menuWrapper {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 1200px) {
  .header__menuWrapper {
    display: none;
  }
}

.header__menuWrapperLeft {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  margin-right: 32px;
}

@media screen and (max-width: 1200px) {
  .header__menuWrapperLeft {
    display: none;
  }
}

.header__menuWrapperLeftLink {
  font-size: 12px;
  font-weight: 300;
  line-height: 15.6px;
  text-decoration: underline;
  color: #01294d;
}

.header__menuWrapperLeftLink:hover {
  text-decoration: none;
}

.header__menu {
  display: flex;
  gap: 24px;
  transition: all 0.2s;
}

@media screen and (max-width: 1400px) {
  .header__menu {
    gap: 10px;
  }
}

.header__menuItemLink {
  font-size: 14px;
  font-weight: bold;
  color: #01294d;
  text-decoration: none;
  transition: all 0.2s;
}

.header__menuItemLink:hover {
  color: #3980cb;
}

@media screen and (max-width: 1400px) {
  .header__menuItemLink {
    font-size: 12px;
  }
}

@media screen and (max-width: 1200px) {
  .header__menuItemLink {
    font-size: 10px;
  }
}

.header__separate {
  width: 1px;
  height: 57px;
  background: #e6e6e6;
}

.header__guidance {
  display: flex;
  align-items: center;
  margin-left: 8px;
}

@media screen and (max-width: 767px) {
  .header__guidance {
    display: none;
  }
}

.header__guidanceInner {
  display: none;
  justify-content: center;
  width: 400px;
}

.header__guidanceText {
  margin-left: 12px;
  font-weight: bold;
  line-height: 1.25;
  color: #01294d;
  letter-spacing: 2px;
}

.header__guidanceEmphasisText {
  color: #3980cb;
  text-decoration: none;
}

.header__hamburgerButton {
  display: none;
}

@media screen and (max-width: 1200px) {
  .header__hamburgerButton {
    position: relative;
    display: block;
    width: 40px;
    height: 28px;
    margin-right: 24px;
    cursor: pointer;
    background: #fff;
    border: none;
  }
}

@media screen and (max-width: 767px) {
  .header__hamburgerButton {
    width: 48px;
    height: 48px;
    margin-right: -8px;
  }
}

.header__hamburgerLine {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 2px;
  background: #3980cb;
  transition: all 0.2s;
}

.header__hamburgerLine:nth-child(1) {
  top: 0;
}

.header__hamburgerLine:nth-child(2) {
  top: 10px;
}

.header__hamburgerLine:nth-child(3) {
  bottom: 0;
}

.header__hamburgerLine.active:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.header__hamburgerLine.active:nth-child(2) {
  opacity: 0;
}

.header__hamburgerLine.active:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

@media screen and (max-width: 1200px) {
  .header__hamburgerLine:nth-child(2) {
    top: 13px;
  }

  .header__hamburgerLine.active:nth-child(1) {
    transform: translateY(13px) rotate(45deg);
  }

  .header__hamburgerLine.active:nth-child(3) {
    transform: translateY(-13px) rotate(-45deg);
  }
}

@media screen and (max-width: 767px) {
  .header__hamburgerLine {
    left: 8px;
    width: 32px;
  }

  .header__hamburgerLine:nth-child(1) {
    top: 13px;
  }

  .header__hamburgerLine:nth-child(2) {
    top: 23px;
  }

  .header__hamburgerLine:nth-child(3) {
    bottom: 13px;
  }

  .header__hamburgerLine.active:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }

  .header__hamburgerLine.active:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
}

.spNav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100vw;
  height: calc(100vh - 54px);
  height: calc(100dvh - 54px);
  margin-top: 54px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s;
  overflow-y: auto;
}

@media screen and (max-width: 1200px) {
  .header .spNav.onlySp {
    display: block;
  }

  .spNav {
    height: calc(100vh - 80px);
    height: calc(100dvh - 80px);
    margin-top: 80px;
  }
}

@media screen and (max-width: 767px) {
  .spNav {
    height: calc(100vh - 54px);
    height: calc(100dvh - 54px);
    margin-top: 54px;
  }
}

.spNav.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.spNav__inner {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 100%;
  padding-top: 32px;
  padding-bottom: 56px;
  background-color: rgba(255, 255, 255, 0.8);
  background-size: cover;
  backdrop-filter: blur(3px) opacity(80%);
  --webkit-backdrop-filter: blur(3px) opacity(80%);
}

.spNav__list {
  display: flex;
  flex-direction: column;
  margin-left: 8px;
}

.spNav__listItem {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.spNav__link {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  font-size: 18px;
  font-weight: 600;
  color: #01294d;
  text-decoration: none;
}

.spNav__link::before {
  display: block;
  width: 12px;
  height: 2px;
  margin-right: 10px;
  content: "";
  background: #3980cb;
}

.spNav__rightArrow {
  width: 20px;
  height: 5px;
}

.spNav__buttonWrapper {
  margin-top: 36px;
}

.spNav__bottom {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

.spNav__bottomLink {
  font-size: 14px;
  font-weight: 300;
  line-height: 15.6px;
  text-decoration: underline;
  color: #01294D;
}

.mv {
  position: relative;
  height: 426px;
  background-image: url("/mirror-assets/images/mv-background.jpg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  transition: all 0.3s;
}

.mv--codex {
  height: auto;
  background: none;
}

.mv--codex .mv__inner {
  display: block;
}

.mv__codexHeroPicture {
  display: none;
}

.mv__codexHero {
  display: block;
  width: 100%;
  height: auto;
}

.mv__codexHeroComposite {
  overflow: hidden;
  width: 100%;
  background: #ffffff;
}

.mv__codexHeroSlicePicture {
  display: block;
}

.mv__codexHeroSlice {
  display: block;
  width: 100%;
  height: auto;
}

.mv__brandMarquee {
  position: relative;
  display: flex;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1774 / 89;
  align-items: center;
  background: #ffffff;
}

.mv__brandTrack {
  display: flex;
  flex: 0 0 auto;
  width: 200%;
  animation: mv-brand-scroll 28s linear infinite;
  will-change: transform;
}

.mv__brandStrip {
  display: block;
  flex: 0 0 50%;
  width: 50%;
  height: auto;
}

.mv__brandMarquee:hover .mv__brandTrack {
  animation-play-state: paused;
}

@keyframes mv-brand-scroll {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mv__brandTrack {
    animation-play-state: paused;
  }
}

@media screen and (max-width: 767px) {
  .mirror-home-page .header {
    position: absolute;
    background: transparent;
    box-shadow: none;
    pointer-events: none;
  }

  .mirror-home-page .header__logoLink {
    visibility: hidden;
  }

  .mirror-home-page .header__hamburgerButton {
    background: transparent;
    opacity: 0;
    pointer-events: auto;
  }

  .mirror-home-page .header__hamburgerButton:has(.header__hamburgerLine.active) {
    opacity: 1;
    isolation: isolate;
  }

  .mirror-home-page .header__hamburgerButton:has(.header__hamburgerLine.active)::before {
    position: absolute;
    z-index: 0;
    inset: -4px -8px -4px -18px;
    content: "";
    background: #ffffff;
  }

  .mirror-home-page .header__hamburgerButton:has(.header__hamburgerLine.active) .header__hamburgerLine {
    z-index: 1;
  }

  .mv--codex,
  .mv--codex .mv__inner,
  .mv__codexHeroPicture {
    width: 100%;
  }

  .mv__codexHeroPicture {
    display: block;
  }
}

@media screen and (max-width: 1400px) {
  .mv {
    background-position: 52% 50%;
  }
}

@media screen and (max-width: 1200px) {
  .mv {
    background-position: 56% 50%;
  }
}

@media screen and (max-width: 1100px) {
  .mv {
    width: 100%;
    height: auto;
    background: none;
    transition: none;
  }
}

@media screen and (max-width: 767px) {
  .mv {
    width: 100vw;
  }
}

.mv__bgImage {
  width: 100%;
}

.mv__bgImageWrapper {
  display: none;
}

@media screen and (max-width: 1100px) {
  .mv__bgImageWrapper {
    display: block;
  }
}

.mv__textImageWrapper {
  max-width: 1040px;
  padding-top: 38px;
  padding-left: 208px;
  margin: 0 auto;
}

@media screen and (max-width: 1400px) {
  .mv__textImageWrapper {
    padding-top: 50px;
    padding-left: 120px;
  }
}

@media screen and (max-width: 1200px) {
  .mv__textImageWrapper {
    padding-top: 60px;
    padding-left: 70px;
  }
}

@media screen and (max-width: 1100px) {
  .mv__textImageWrapper {
    display: none;
  }
}

.mv__textImage {
  transition: all 0.3s;
}

@media screen and (max-width: 1400px) {
  .mv__textImage {
    width: 320px;
    height: auto;
  }
}

@media screen and (max-width: 1200px) {
  .mv__textImage {
    width: 300px;
  }
}

.speechBalloon {
  position: relative;
}

.speechBalloon__text {
  position: absolute;
  top: 10px;
  left: 25px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.trouble {
  padding: 0 15px;
  margin-top: 80px;
}

@media screen and (max-width: 767px) {
  .trouble {
    padding: 0;
    margin-top: 0;
  }

  .trouble > .trouble__inner {
    display: none;
  }

  .trouble__mobileArtwork {
    width: 100%;
    height: auto;
  }
}

.trouble__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trouble__mainMessage {
  padding: 0 20px;
}

@media screen and (max-width: 767px) {
  .trouble__mainMessage {
    font-size: 20px;
    line-height: 1.7;
    text-align: center;
  }
}

.trouble__mainMessageText {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 28px;
  font-weight: 600;
  color: #01294d;
}

@media screen and (max-width: 1200px) {
  .trouble__mainMessageText {
    gap: clamp(4px, 0.5208333333vw, 10px);
    font-size: clamp(20px, 2.6041666667vw, 28px);
  }

  _::-webkit-full-page-media,
  _:future,
  :root .trouble__mainMessageText.isZoom {
    gap: clamp(2px, 0.2604166667vw, 10px);
    font-size: clamp(16px, 2.0833333333vw, 28px);
  }
}

@media screen and (max-width: 1020px) {
  .trouble__mainMessageText {
    gap: clamp(4px, 0.5208333333vw, 10px);
    font-size: clamp(14px, 1.8229166667vw, 28px);
  }

  _::-webkit-full-page-media,
  _:future,
  :root .trouble__mainMessageText.isZoom {
    gap: clamp(2px, 0.2604166667vw, 10px);
    font-size: clamp(10px, 1.3020833333vw, 28px);
  }
}

@media screen and (max-width: 767px) {
  .trouble__mainMessageText {
    display: block;
    font-size: 18px;
  }
}

.trouble__mainMessagePrefix {
  font-size: 28px;
  font-weight: 600;
  color: #01294d;
}

@media screen and (max-width: 1200px) {
  .trouble__mainMessagePrefix {
    font-size: clamp(20px, 2.6041666667vw, 28px);
  }

  _::-webkit-full-page-media,
  _:future,
  :root .trouble__mainMessagePrefix.isZoom {
    font-size: clamp(12px, 1.5625vw, 28px);
  }
}

@media screen and (max-width: 1020px) {
  .trouble__mainMessagePrefix {
    font-size: clamp(14px, 1.8229166667vw, 28px);
  }

  _::-webkit-full-page-media,
  _:future,
  :root .trouble__mainMessagePrefix.isZoom {
    font-size: clamp(10px, 1.3020833333vw, 28px);
  }
}

@media screen and (max-width: 767px) {
  .trouble__mainMessagePrefix {
    font-size: 18px;
  }
}

.trouble__mainMessageEmphasis {
  margin-top: 16px;
  font-size: 44px;
  font-weight: 600;
  color: #3980cb;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .trouble__mainMessageEmphasis {
    margin-left: 30px;
    font-size: 30px;
  }
}

.trouble__mainMessageCompanyName {
  display: inline-block;
  padding: 12px 10px;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -1px;
  background-color: #3980cb;
  border-radius: 6px;
}

@media screen and (max-width: 1200px) {
  .trouble__mainMessageCompanyName {
    font-size: clamp(16px, 2.0833333333vw, 24px);
  }

  _::-webkit-full-page-media,
  _:future,
  :root .trouble__mainMessageCompanyName.isZoom {
    font-size: clamp(10px, 1.3020833333vw, 24px);
  }
}

@media screen and (max-width: 1020px) {
  .trouble__mainMessageCompanyName {
    font-size: clamp(12px, 1.5625vw, 24px);
  }

  _::-webkit-full-page-media,
  _:future,
  :root .trouble__mainMessageCompanyName.isZoom {
    font-size: clamp(8px, 1.0416666667vw, 24px);
  }
}

@media screen and (max-width: 767px) {
  .trouble__mainMessageCompanyName {
    padding-right: 15px;
    padding-left: 9px;
    margin-top: 12px;
    margin-right: 8px;
    font-size: 18px;
  }
}

.trouble__listWrapper {
  position: relative;
}

@media screen and (max-width: 767px) {
  .trouble__listWrapper {
    width: 100%;
    padding: 0 36px 280px;
  }
}

.trouble__manImage {
  position: absolute;
  top: calc(8% + 18px);
  left: 48%;
  width: 219px;
  height: auto;
  transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  .trouble__manImage {
    top: auto;
    bottom: 4%;
    left: 50%;
    width: 162px;
    height: auto;
  }
}

.trouble__list {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  row-gap: 32px;
  column-gap: clamp(110px, 14.3229166667vw, 180px);
  margin-top: 38px;
}

@media screen and (max-width: 767px) {
  .trouble__list {
    grid-template-columns: 1fr;
    row-gap: 0;
    padding: 12px 8px 0;
    margin-top: 24px;
    background-color: #faf8f8;
  }
}

@media screen and (max-width: 767px) {
  .trouble__item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px 0 14px;
    border-bottom: 2px solid #fff;
  }
}

@media screen and (max-width: 767px) {
  .trouble__item:last-child {
    padding-bottom: 32px;
  }
}

@media screen and (max-width: 767px) {
  .trouble__itemImage {
    width: 160px;
    height: 110px;
  }
}

.trouble__itemContent {
  gap: 8px;
  width: 100%;
  padding-left: clamp(18px, 2.34375vw, 32px);
  font-weight: 600;
  color: #01294d;
}

@media screen and (max-width: 767px) {
  .trouble__itemContent {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 226px;
    padding-left: 0;
    margin-left: 0;
  }
}

.trouble__itemCheckMark {
  margin-top: 4px;
}

.trouble__itemHeading {
  margin-bottom: 8px;
  font-size: clamp(16px, 2.0833333333vw, 20px);
  font-weight: 600;
  line-height: 1.5;
  color: #0b62bf;
}

@media screen and (max-width: 767px) {
  .trouble__itemHeading {
    margin-bottom: 0;
    font-size: 18px;
    color: #1b75c3;
  }
}

.trouble__itemDetails {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

@media screen and (max-width: 767px) {
  .trouble__itemDetails {
    width: 100%;
  }
}

.trouble__itemDetail {
  display: flex;
  gap: clamp(3px, 0.390625vw, 6px);
}

@media screen and (max-width: 767px) {
  .trouble__itemDetail {
    gap: 6px;
  }
}

.trouble__itemDetailText {
  align-self: flex-end;
  font-size: clamp(12px, 1.5625vw, 14px);
  font-weight: 600;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .trouble__itemDetailText {
    font-size: 14px;
  }
}

.trouble__itemIcon {
  width: clamp(18px, 2.34375vw, 28px);
  height: auto;
}

@media screen and (max-width: 767px) {
  .trouble__itemIcon {
    width: 28px;
  }
}

.trouble__itemCheckIcon {
  width: clamp(18px, 2.34375vw, 24px);
  height: clamp(18px, 2.34375vw, 24px);
}

@media screen and (max-width: 767px) {
  .trouble__itemCheckIcon {
    width: 24px;
    height: 24px;
  }
}

.trouble__downArrow {
  margin-top: 90px;
}

@media screen and (max-width: 767px) {
  .trouble__downArrow {
    margin-top: 12px;
  }
}

.trouble__supportImage {
  position: absolute;
  top: -55%;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  .trouble__supportImage {
    top: -80%;
  }
}

.trouble__support {
  position: relative;
  width: 100%;
  overflow: visible;
}

.trouble__backgroundWrapper {
  width: 100%;
  padding-top: 120px;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .trouble__backgroundWrapper {
    padding-top: 160px;
  }
}

.trouble__background {
  position: relative;
  height: 200px;
  padding-right: 100px;
  padding-left: 100px;
  margin-right: -100px;
  margin-left: -100px;
  background: #f2f8fc;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
}

.trouble__background::before {
  position: absolute;
  top: 20px;
  width: 100%;
  height: 200px;
  padding-right: 100px;
  padding-left: 100px;
  margin-right: -100px;
  margin-left: -100px;
  content: "";
  background: #f2f8fa;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
}

@media screen and (max-width: 767px) {
  .trouble__background {
    height: 180px;
  }
}

.advantages {
  position: relative;
  padding-bottom: 50px;
  margin-top: 64px;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .advantages {
    padding-bottom: 40px;
    margin-top: 40px;
  }
}

.advantages__headingWrapper {
  padding: 0 15px;
}

@media screen and (max-width: 767px) {
  .advantages__headingWrapper {
    padding: 0;
  }
}

.advantages__inner {
  position: relative;
}

.advantages__inner::before {
  position: absolute;
  top: 17%;
  width: 100%;
  height: 100%;
  content: "";
  background-image: url("/mirror-assets/images/bg-pc.png");
  background-position: center top;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .advantages__inner::before {
    top: 13%;
    background-image: url("/mirror-assets/images/bg-sp.png");
  }
}

.advantages__circle {
  position: absolute;
  bottom: 0;
  left: -24%;
  z-index: 5;
  width: 833px;
  height: 833px;
}

@media screen and (max-width: 767px) {
  .advantages__circle {
    width: 430px;
    height: 430px;
  }
}

.advantages__listWrapper {
  position: relative;
  max-width: 880px;
  margin: 32px auto 0;
}

.advantages__list {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 0 15px;
}

@media screen and (max-width: 767px) {
  .advantages__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    padding: 0 20px;
  }
}

.advantages__note {
  position: relative;
  z-index: 10;
  max-width: 443px;
  padding: 0 15px;
  margin: 12px 0 0 auto;
  font-size: 12px;
  line-height: 1.5;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .advantages__note {
    padding: 0 20px;
    margin-top: 4px;
  }
}

.advantage {
  position: relative;
  max-width: 428px;
  padding: 32px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 32px rgba(42, 88, 150, 0.16);
}

@media screen and (max-width: 767px) {
  .advantage {
    max-width: initial;
    padding: 24px 16px;
  }
}

.advantage__point {
  font-family: newnord, sans-serif;
  color: #3980cb;
  text-align: center;
  text-transform: uppercase;
}

.advantage__title {
  margin-top: 24px;
  margin-bottom: 12px;
  font-family: "メイリオ", sans-serif;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.25;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .advantage__title {
    margin-top: 16px;
    font-size: 20px;
  }
}

.advantage__detail {
  font-size: 14px;
  line-height: 1.75;
  color: #434e54;
}

@media screen and (max-width: 767px) {
  .advantage__detail {
    margin-top: 8px;
  }
}

.advantage__detailEmphasis {
  font-size: 14px;
  font-weight: 600;
  color: #de4f00;
}

.advantage__image {
  width: 100%;
  max-width: 260px;
  height: auto;
  margin: 20px auto 0;
  box-shadow: 0 8px 24px rgba(42, 88, 150, 0.16);
}

.advantage__image--codex {
  max-width: 320px;
  border: 1px solid #d8e6fb;
  border-radius: 4px;
  background: #fff;
}

.advantage__image--diagram {
  max-width: 340px;
}

.advantage__image--flow-card {
  max-width: 100%;
}

.advantage__image--estimate-analysis {
  max-width: 100%;
  border: 1px solid #e8d77e;
  border-radius: 8px;
  background: #fff7c4;
}

.advantage__image--clickable {
  cursor: zoom-in;
}

.advantage__image--clickable:focus-visible {
  outline: 3px solid #3980cb;
  outline-offset: 4px;
}

.imageLightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(1, 22, 45, 0.72);
}

.imageLightbox[hidden] {
  display: none;
}

.imageLightbox__panel {
  position: relative;
  width: min(92vw, 1120px);
  max-height: 90vh;
  padding: 22px;
  overflow: auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(1, 22, 45, 0.36);
}

.imageLightbox__image {
  width: 100%;
  height: auto;
  max-height: calc(90vh - 44px);
  object-fit: contain;
}

.imageLightbox__close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  font-size: 28px;
  line-height: 1;
  color: #01294d;
  cursor: pointer;
  background: #fff;
  border: 1px solid #d8e6fb;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(42, 88, 150, 0.16);
}

.imageLightbox__close:focus-visible {
  outline: 3px solid #3980cb;
  outline-offset: 3px;
}

@media screen and (max-width: 767px) {
  .advantage__image {
    max-width: 303px;
    box-shadow: none;
  }

  .advantage__image--codex,
  .advantage__image--diagram {
    max-width: 100%;
  }

  .imageLightbox {
    padding: 16px;
  }

  .imageLightbox__panel {
    width: 100%;
    padding: 14px;
  }

  .imageLightbox__close {
    top: 6px;
    right: 6px;
    width: 34px;
    height: 34px;
  }
}

.occupation {
  background-image: url("/mirror-assets/images/bg-grid.png");
  padding: 0 15px 40px;
}

@media screen and (max-width: 767px) {
  .occupation {
    padding: 0 20px 24px;
  }
}

.occupation__triangle {
  margin: -1px auto 0;
}

.occupation__headingWrapper {
  padding: 0 15px;
  margin-top: 48px;
}

@media screen and (max-width: 767px) {
  .occupation__headingWrapper {
    padding: 0;
  }
}

.occupation__content {
  max-width: 880px;
  margin: 40px auto 0;
}

@media screen and (max-width: 767px) {
  .occupation__ac {
    border: 4px solid #3980CB;
    border-bottom: none;
    border-radius: 4px 4px 0 0;
  }

  .occupation__ac-area {
    overflow: hidden;
    max-height: 0;
    transition: max-height .3s ease-in-out;
  }

  .occupation__ac-area.is-open {
    max-height: 100vh;
  }
}

.occupation__ac-btn {
  display: none;
}

@media screen and (max-width: 767px) {
  .occupation__ac-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none;
    width: 100%;
    padding: 2px 6px 0;
    background: #3980CB;
    font-size: 12px;
    font-weight: 600;
    line-height: 2;
    text-align: left;
    color: #FFF;
  }
}

.occupation__ac-btn::after {
  content: '';
  display: block;
  width: 6px;
  aspect-ratio: 1 / 1;
  margin-top: -3px;
  border-top: 1px solid #FFF;
  border-left: 1px solid #FFF;
  transform: rotate(225deg);
}

.occupation__ac-btn.is-open::after {
  transform: rotate(45deg);
  margin-top: 3px;
}

.occupation__tab {
  display: flex;
  gap: 6px;
  margin-bottom: -3px;
}

@media screen and (max-width: 767px) {
  .occupation__tab {
    border-top: 4px solid #3980CB;
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
  }
}

.occupation__tabItem {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border: 2px solid #3980CB;
  border-radius: 8px 8px 0 0;
  background: #FFF;
  padding: 15px 13px;
  color: #3980CB;
  font-size: 15px;
  font-weight: 600;
  line-height: calc(20 / 15);
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .occupation__tabItem {
    justify-content: flex-start;
    border: none;
    border-radius: 0;
    padding: 4px 12px;
    font-size: 12px;
    line-height: 2;
    color: #01294D;
  }
}

.occupation__tabItem.is-active {
  background: #3980CB;
  color: #FFF;
  cursor: default;
}

@media screen and (max-width: 767px) {
  .occupation__tabItem.is-active {
    background: #D3E3F3;
    color: #01294D;
  }
}

.occupation__area {
  display: none;
  border: 4px solid #3980CB;
  background: #FFF;
  position: relative;
  padding: 36px;
}

@media screen and (max-width: 767px) {
  .occupation__area {
    padding: 16px 12px;
  }
}

.occupation__area.is-active {
  display: block;
}

.occupation__lead {
  display: flex;
  align-items: center;
  gap: 16px;
}

@media screen and (max-width: 767px) {
  .occupation__lead {
    align-items: flex-start;
    gap: 11px;
  }
}

.occupation__leadIcon {
  width: 92px;
  height: 92px;
  flex-shrink: 0;
}

@media screen and (max-width: 767px) {
  .occupation__leadIcon {
    width: 39px;
    height: 39px;
  }
}

.occupation__leadText {
  font-size: 16px;
  font-weight: 300;
  line-height: calc(24 / 16);
}

@media screen and (max-width: 767px) {
  .occupation__leadText {
    font-size: 14px;
    line-height: calc(24 / 14);
  }
}

.occupation__subTab {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 3px;
  margin-top: 24px;
}

@media screen and (max-width: 767px) {
  .occupation__subTab {
    gap: 8px;
    margin-top: 8px;
  }
}

.occupation__subTabItem {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  background: #D3E3F3;
  padding: 4px 16px;
  font-size: 12px;
  font-weight: 600;
  line-height: calc(24 / 12);
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .occupation__subTabItem {
    border-radius: 4px;
    width: 100%;
    justify-content: space-between;
  }
}

.occupation__subTabItem::after {
  content: '';
  display: block;
  width: 6px;
  aspect-ratio: 1 / 1;
  margin-top: -3px;
  border-top: 1px solid #01294D;
  border-left: 1px solid #01294D;
  transform: rotate(225deg);
}

.occupation__subTabItem.is-active {
  background: #3980CB;
  color: #FFF;
  cursor: default;
}

.occupation__subTabItem.is-active::after {
  border-color: #FFF;
  transform: rotate(45deg);
  margin-top: 3px;
}

.occupation__subArea {
  margin-top: 22px;
  display: none;
}

@media screen and (max-width: 767px) {
  .occupation__subArea {
    margin-top: 16px;
  }
}

.occupation__subArea.is-active {
  display: block;
}

.occupation__subAreaHeading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .occupation__subAreaHeading {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

.occupation__subAreaHeadingText {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
}

.occupation__subAreaText {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 767px) {
  .occupation__subAreaText {
    margin-top: 4px;
  }
}

.occupation__work {
  margin-top: 24px;
  border-top: 2px solid #DDE0E4;
}

.occupation__workSec {
  margin-top: 24px;
}

@media screen and (max-width: 767px) {
  .occupation__workSec {
    margin-top: 16px;
  }

  .occupation__workSec:first-child {
    margin-top: 24px;
  }
}

.occupation__work .heading__text {
  font-size: 20px;
  line-height: 1.5;
}

.occupation__work .heading__separate {
  width: 40px;
  margin-top: 8px;
}

.occupation__work .heading__separate::after {
  width: 20px;
}

.occupation__workList {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.occupation__workListItem {
  border-radius: 8px;
  background: #F2F8FA;
  padding: 10px 20px;
}

@media screen and (max-width: 767px) {
  .occupation__workListItem {
    padding: 6px 10px;
  }
}

.occupation__workListItem--col1 {
  width: 100%;
}

.occupation__workListItem--col2 {
  width: calc((100% - 10px * 2) / 3 * 2 + 10px);
}

@media screen and (max-width: 767px) {
  .occupation__workListItem--col2 {
    width: 100%;
  }
}

.occupation__workListItem--col3 {
  width: calc((100% - 10px * 2) / 3);
}

@media screen and (max-width: 767px) {
  .occupation__workListItem--col3 {
    width: 100%;
  }
}

.occupation__workListItemHeading {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.occupation__workListItemText {
  font-size: 16px;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.04em;
  margin-top: 4px;
}

@media screen and (max-width: 767px) {
  .occupation__workListItemText {
    line-height: 1.5;
  }
}

.occupation__workListItemText--spaceNone {
  letter-spacing: 0;
}

.occupation__workListItemTextNote {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 4px;
}

@media screen and (max-width: 767px) {
  .occupation__workListItemTextNote {
    line-height: 1.5;
    margin-top: 0;
  }
}

.occupation__map {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 2px solid #DDE0E4;
}

.occupation__map .heading__text {
  line-height: 1.5;
}

.occupation__map .heading__textSub {
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  margin-top: 8px;
}

.occupation__map .area__message {
  padding: 0;
}

.occupation__map .area__mainMessage {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .occupation__map .area__subMessage {
    margin-top: 10px;
  }
}

@media screen and (max-width: 767px) {
  .occupation__map .area__mapImage {
    max-width: inherit;
  }
}

.occupation__categoryDetailLinkWrapper {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
}

@media screen and (max-width: 767px) {
  .occupation__categoryDetailLinkWrapper {
    justify-content: center;
  }
}

.occupation__categoryDetailLink {
  position: relative;
  display: flex;
  gap: 46px;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  line-height: calc(24 / 18);
  color: #FFF;
  background: linear-gradient(90deg, #2C83D0 0%, #0065BD 100%);
  border-radius: 9999px;
  padding: 8px 8px 8px 40px;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .occupation__categoryDetailLink {
    gap: 4px;
    font-size: 16px;
    line-height: 1.5;
    padding: 10px 7px;
  }
}

@media screen and (max-width: 767px) {
  .occupation__categoryDetailLinkArw {
    width: 22px;
    height: 22px;
  }
}

.occupation__list {
  padding: 0 15px;
  margin-top: 32px;
}

@media screen and (max-width: 767px) {
  .occupation__list {
    padding: 0 20px;
  }
}

.occupation__item {
  max-width: 880px;
  padding: 26px 32px 28px;
  margin: 24px auto 0;
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 8px;
}

@media screen and (max-width: 767px) {
  .occupation__item {
    padding: 20px 16px 32px;
    margin-top: 16px;
  }

  .occupation__item:first-child {
    margin-top: 0;
  }
}

.occupation__item--sub {
  position: relative;
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  row-gap: 32px;
  column-gap: 40px;
  width: 100%;
}

.occupation__item--sub::before {
  position: absolute;
  top: 8%;
  left: 50%;
  display: block;
  width: 1px;
  height: 83%;
  content: "";
  background-color: #dde0e4;
}

@media screen and (max-width: 767px) {
  .occupation__item--sub {
    display: block;
    padding: 8px 24px;
    margin-top: 16px;
  }

  .occupation__item--sub::before {
    display: none;
  }
}

.occupation__item--sub.onlyPc {
  display: grid;
}

@media screen and (max-width: 767px) {
  .occupation__item--sub.onlyPc {
    display: none;
  }
}

.occupation__item--sub.onlySp {
  display: none;
}

@media screen and (max-width: 767px) {
  .occupation__item--sub.onlySp {
    display: block;
  }
}

.occupation__title {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 8px 0;
  font-size: 18px;
  font-weight: 600;
  color: #01294d;
  background: #f5f9fc;
  border-radius: 8px 8px 0 0;
}

@media screen and (max-width: 767px) {
  .occupation__title {
    gap: 20px;
  }
}

.occupation__title--sub {
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .occupation__title--sub {
    justify-content: flex-start;
    padding: 0 0 0 12px;
    font-size: 20px;
    background: none;
  }
}

.occupation__image--officeWork {
  width: 19px;
  height: 22px;
}

@media screen and (max-width: 767px) {
  .occupation__image--officeWork {
    width: 20px;
    height: 24px;
  }
}

.occupation__image--it {
  width: 32px;
  height: 22px;
}

@media screen and (max-width: 767px) {
  .occupation__image--it {
    width: 30px;
    height: 21px;
  }
}

@media screen and (max-width: 767px) {
  .occupation__image--sales {
    width: 31px;
    height: 28px;
  }
}

@media screen and (max-width: 767px) {
  .occupation__image--teleMarketing {
    width: 28px;
    height: 28px;
  }
}

@media screen and (max-width: 767px) {
  .occupation__image--finance {
    width: 24px;
    height: 21px;
  }
}

@media screen and (max-width: 767px) {
  .occupation__image--medical {
    width: 24px;
    height: 21px;
  }
}

.occupation__categories {
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 767px) {
  .occupation__categories {
    margin-top: 6px;
  }
}

.occupation__category {
  display: flex;
  gap: 36px;
  align-items: center;
  padding: 14px;
  border-bottom: 1px dashed #e6e6e6;
}

@media screen and (max-width: 767px) {
  .occupation__category {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    padding: 14px 8px;
  }
}

.occupation__category:last-child {
  border: none;
}

@media screen and (max-width: 767px) {
  .occupation__category:last-child {
    padding-bottom: 0;
  }
}

.occupation__categoryName {
  flex-shrink: 0;
  width: 90px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: #3980cb;
}

@media screen and (max-width: 767px) {
  .occupation__categoryName {
    width: auto;
  }
}

.occupation__categorizedList {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .occupation__categorizedList {
    display: block;
    margin-top: 4px;
  }
}

.occupation__categorizedList--sub {
  margin-top: 12px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .occupation__categorizedList--sub {
    width: auto;
    height: 0;
    margin-top: 0;
    overflow: hidden;
    visibility: hidden;
    transition: all 0.5s;
  }

  .occupation__categorizedList--sub.active {
    height: auto;
    max-height: auto;
    padding-bottom: 12px;
    margin-top: 12px;
    overflow: auto;
    visibility: visible;
    transition: all 0.5s;
  }
}

.occupation__categorizedItem {
  font-size: 14px;
  line-height: 1.75;
  color: #01294d;
}

@media screen and (max-width: 767px) {
  .occupation__categorizedItem {
    font-size: 13px;
  }
}

.occupation__separate {
  align-self: center;
  margin: 0 14px;
  font-size: 14px;
  line-height: 1.25;
  color: #3980cb;
}

.occupation__separate:last-child {
  display: none;
}

@media screen and (max-width: 767px) {
  .occupation__separate {
    margin: 0;
    font-size: 13px;
    color: #01294d;
  }
}

@media screen and (max-width: 767px) {
  .occupation__subItem {
    position: relative;
  }
}

.occupation__accordionButton {
  position: absolute;
  top: 0;
  right: -12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
}

.occupation__accordionButton::before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 24px;
  height: 3px;
  content: "";
  background: #3980cb;
  transform: translateX(-50%);
}

.occupation__accordionButton::after {
  position: absolute;
  top: 28%;
  left: 50%;
  display: block;
  width: 3px;
  height: 24px;
  content: "";
  background: #3980cb;
  transform: translateX(-50%);
}

.occupation__item--sub.active .occupation__accordionButton::after {
  display: none;
}

.occupation__inductionWrapper {
  /* height: 54px; */
}

@media screen and (max-width: 767px) {
  .occupation__inductionWrapper {
    /* height: 40px; */
    padding: 0;
  }
}

.occupation__induction {
  position: relative;
  bottom: -100%;
  margin-top: 150px;
}

.occupation__induction--sp {
  /* margin-top: 112px; */
  margin-top: 24px;
}

.area {
  padding-bottom: 83px;
}

@media screen and (max-width: 767px) {
  .area {
    padding-bottom: 44px;
  }
}

.area__message {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 15px;
  margin-top: 24px;
  font-weight: 300;
  color: #01294d;
}

@media screen and (max-width: 767px) {
  .area__message {
    padding: 0 20px;
    margin-top: 24px;
    text-align: left;
  }
}

.area__mainMessage {
  line-height: 1.5;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .area__mainMessage {
    padding: 0 5px;
  }
}

.area__subMessage {
  margin-top: 10px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .area__subMessage {
    display: flex;
    gap: 5px;
    margin-top: 6px;
  }
}

.area__subMessagePrefix {
  font-size: 12px;
  line-height: 1.5;
}

.area__subMessageSentence {
  font-size: 12px;
  line-height: 1.5;
}

.area__mapImage {
  width: 100%;
  max-width: 880px;
  height: auto;
  margin: 32px auto 0;
}

@media screen and (max-width: 767px) {
  .area__mapImage {
    max-width: 336px;
    margin-top: 0;
  }
}

.introduction {
  padding-top: 81px;
  padding-bottom: 34px;
  background: #f2f8fa;
}

@media screen and (max-width: 767px) {
  .introduction {
    padding-top: 96px;
    padding-bottom: 42px;
    margin-top: -40px;
  }
}

.introduction__companies {
  margin-top: 48px;
}

@media screen and (max-width: 767px) {
  .introduction__companies {
    margin-top: 56px;
  }
}

.introduction__appealMessage {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .introduction__appealMessage {
    gap: 12px;
  }
}

.introduction__appealMessageText {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  color: #01294d;
}

@media screen and (max-width: 767px) {
  .introduction__appealMessageText {
    font-size: 18px;
    text-align: center;
  }
}

.introduction__emphasisText {
  margin-right: 4px;
  font-size: 20px;
}

@media screen and (max-width: 767px) {
  .introduction__emphasisText {
    margin-right: 2px;
    font-size: 16px;
  }
}

.introduction__appealMessageDecoration {
  transform: scaleX(-1);
}

.introduction__companyImageList {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  row-gap: 16px;
  column-gap: 12px;
  max-width: 700px;
  margin: 16px auto 0;
}

@media screen and (max-width: 767px) {
  .introduction__companyImageList {
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    max-width: 335px;
    margin-top: 16px;
  }
}

.introduction__companyImage {
  background: #fff;
}

@media screen and (max-width: 767px) {
  .introduction__companyImage {
    width: 162px;
    height: 78px;
  }

  .introduction__companyImage:nth-child(n+5) {
    display: none;
  }
}

.introduction__note {
  max-width: 897px;
  padding: 0 15px;
  margin: 24px auto 0;
  font-size: 12px;
  font-weight: 300;
  color: #01294d;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .introduction__note {
    max-width: 335px;
    padding: 0;
  }
}

.codexDetailCta {
  display: flex;
  justify-content: center;
  padding: 72px 20px 8px;
  background: #fff;
}

.codexDetailCta__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 500px);
  min-height: 92px;
  padding: 16px 66px 16px 44px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background: linear-gradient(135deg, #3e95e8 0%, #126bc2 55%, #0757a9 100%);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  box-shadow:
    0 6px 0 #084d92,
    0 14px 26px rgba(12, 87, 161, 0.22);
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.codexDetailCta__button:hover {
  box-shadow:
    0 3px 0 #084d92,
    0 10px 20px rgba(12, 87, 161, 0.28);
  transform: translateY(3px);
}

.codexDetailCta__button:focus-visible {
  outline: 3px solid #f5b940;
  outline-offset: 5px;
}

.codexDetailCta__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.codexDetailCta__subText {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.codexDetailCta__mainText {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.codexDetailCta__arrow {
  position: absolute;
  top: 50%;
  right: 27px;
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  color: #176fc4;
  background: #fff;
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .codexDetailCta {
    padding: 48px 20px 6px;
  }

  .codexDetailCta__button {
    width: min(100%, 310px);
    min-height: 76px;
    padding: 13px 46px 13px 24px;
    box-shadow:
      0 5px 0 #084d92,
      0 11px 20px rgba(12, 87, 161, 0.2);
  }

  .codexDetailCta__subText {
    font-size: 10px;
  }

  .codexDetailCta__mainText {
    font-size: 15px;
  }

  .codexDetailCta__arrow {
    right: 17px;
    width: 20px;
    height: 20px;
    font-size: 20px;
  }
}

.contactFlow {
  padding: 0 15px 76px;
  margin-top: 80px;
}

@media screen and (max-width: 767px) {
  .contactFlow {
    padding: 0 0 56px;
    margin-top: 52px;
  }
}

.contactFlow__note {
  margin-top: 32px;
  font-weight: 600;
  color: #01294d;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .contactFlow__note {
    font-size: 14px;
  }
}

.contactFlow__steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 880px;
  margin: 32px auto 0;
}

@media screen and (max-width: 767px) {
  .contactFlow__steps {
    gap: 34px;
    padding: 0 20px;
    margin-top: 32px;
  }
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 4px;
}

@media screen and (max-width: 767px) {
  .step {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.step__imageWrapper {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  background-color: #d6e9f2;
  border-radius: 8px 0 0 8px;
}

@media screen and (max-width: 767px) {
  .step__imageWrapper {
    flex-direction: row;
    height: 50px;
    border-radius: 8px 8px 0 0;
  }
}

.step__image--1 {
  width: 42px;
  height: 29px;
}

@media screen and (max-width: 767px) {
  .step__image--1 {
    width: 27px;
    height: 20px;
  }
}

.step__image--2 {
  width: 39px;
  height: 31px;
}

@media screen and (max-width: 767px) {
  .step__image--2 {
    width: 26px;
    height: 21px;
  }
}

.step__image--3 {
  width: 36px;
  height: 36px;
}

@media screen and (max-width: 767px) {
  .step__image--3 {
    width: 24px;
    height: 24px;
  }
}

.step__image--4 {
  width: 46px;
  height: 35px;
}

@media screen and (max-width: 767px) {
  .step__image--4 {
    width: 31px;
    height: 23px;
  }
}

.step__contents {
  padding: 32px 55px;
  background-color: #f2f8fa;
  border-radius: 0 8px 8px 0;
}

@media screen and (max-width: 767px) {
  .step__contents {
    padding: 24px 24px 20px;
    border-radius: 0 0 8px 8px;
  }
}

.step__numberWrapper {
  margin-bottom: 12px;
  font-family: newnord, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.25;
  color: #3980cb;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .step__numberWrapper {
    margin-right: 16px;
    margin-bottom: 0;
    font-size: 24px;
  }
}

.step__numberPrefix {
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .step__numberPrefix {
    font-size: inherit;
  }
}

.step__number {
  font-size: 32px;
}

@media screen and (max-width: 767px) {
  .step__number {
    font-size: inherit;
  }
}

.step__title {
  font-size: 20px;
  font-weight: bold;
  color: #01294d;
}

@media screen and (max-width: 767px) {
  .step__title {
    line-height: 1.25;
    word-break: keep-all;
  }
}

.step__detailWrapper {
  margin-top: 16px;
}

@media screen and (max-width: 767px) {
  .step__detailWrapper {
    padding-bottom: 16px;
    margin-top: 8px;
    border-bottom: 1px solid #91b9e2;
  }
}

.step__detail {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: #01294d;
}

.step__detail::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  content: "";
  background-color: #3980cb;
  border-radius: 50%;
}

@media screen and (max-width: 767px) {
  .step__detail {
    display: flex;
    margin-top: 8px;
    line-height: 1.5;
  }

  .step__detail:first-child {
    margin-top: 0;
  }

  .step__detail::before {
    display: block;
    flex-shrink: 0;
    margin-top: 10px;
  }
}

.step__point {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 20px;
  border-top: 1px solid #91b9e2;
}

@media screen and (max-width: 767px) {
  .step__point {
    flex-direction: column;
    gap: 10px;
    align-items: center;
    border: none;
  }
}

@media screen and (max-width: 767px) {
  .step__pointImage {
    width: 240px;
    height: 162px;
  }
}

.step__pointTitle {
  font-weight: 600;
  line-height: 1.5;
  color: #d95b23;
}

.step__pointDetail {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.5;
}

.step__pointDetailNote {
  margin-top: 6px;
  font-size: 12px;
}

.step__arrow {
  position: absolute;
  bottom: -16px;
  left: 50%;
  z-index: 10;
  width: 40px;
  height: 16px;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background-color: #91b9e2;
  transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  .step__arrow {
    bottom: -18px;
    width: 48px;
    height: 18px;
    background-color: #3980cb;
  }
}

.faq__inner {
  padding: 80px 15px;
  background: #f4f5f6;
}

@media screen and (max-width: 767px) {
  .faq__inner {
    padding: 56px 0;
  }
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 724px;
  margin: 32px auto 0;
}

@media screen and (max-width: 767px) {
  .faq__list {
    max-width: auto;
    padding: 0 20px;
  }
}

.faq__item {
  padding: 24px 32px;
  background: #fff;
  border-radius: 8px;
}

@media screen and (max-width: 767px) {
  .faq__item {
    padding: 24px 20px;
  }
}

.faq__faqMark {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.faq__faqMark--question {
  background-color: #e9f1f9;
}

.faq__faqMark--answer {
  background-color: #fcede6;
}

.faq__itemRow {
  display: flex;
  gap: 16px;
}

.faq__itemRow--question {
  position: relative;
  padding-right: 30px;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .faq__itemRow--question {
    padding-right: 25px;
  }
}

.faq__itemRow--question::before,
.faq__itemRow--question::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 0px;
  width: 23px;
  height: 3px;
  background: center center url("/mirror-assets/images/icon-accordion-bar.svg");
  background-size: 23px 3px;
}

@media screen and (max-width: 767px) {

  .faq__itemRow--question::before,
  .faq__itemRow--question::after {
    top: 9px;
    width: 18px;
    height: 3px;
    background-size: 18px 3px;
  }
}

.faq__itemRow--question::after {
  transform: rotate(-90deg);
  transition: opacity .3s ease-in-out, transform .3s ease-in-out;
}

.faq__itemRow--answer {
  padding-top: 16px;
}

@media screen and (max-width: 767px) {
  .faq__itemRow {
    gap: 8px;
  }
}

.faq__content {
  overflow: hidden;
  max-height: 0;
  transition: max-height .3s ease-in-out;
}

.faq__item.is-open .faq__content {
  max-height: 100vh;
}

.faq__item.is-open .faq__itemRow--question::after {
  transform: rotate(0);
  opacity: 0;
}


.faq__itemText {
  font-weight: 600;
  line-height: 1.5;
}

.faq__itemText--answer {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
}

.faq__itemText--answer a {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
}

.footer {
  width: 100%;
  box-sizing: border-box;
  border-top: 5px solid #65b6e8;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
  padding: 20px clamp(24px, 4vw, 64px);
}

@media screen and (max-width: 767px) {
  .footer__inner {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    padding: 20px 24px 12px;
  }
}

.footer__company {
  display: flex;
  gap: 20px;
  align-items: center;
}

@media screen and (max-width: 1020px) {
  .footer__company {
    flex-direction: column;
    gap: 0;
  }
}

@media screen and (max-width: 767px) {
  .footer__company {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}

.footer__copyright {
  padding-top: 10px;
  font-size: 11px;
}

@media screen and (max-width: 767px) {
  .footer__copyright {
    padding-top: 0;
  }
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0b2f5f;
  text-decoration: none;
}

.footer__brandMark {
  display: inline-block;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  background: url("/assets/codex-cloud-logo.svg") center / contain no-repeat;
  border-radius: 9px;
}

.footer__brandText {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-size: 20px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.footer__brandText strong {
  font-size: 23px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: lowercase;
}

.footer__privacy {
  display: flex;
  gap: 20px;
  align-items: center;
}

@media screen and (max-width: 1020px) {
  .footer__privacy {
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
  }
}

@media screen and (max-width: 767px) {
  .footer__privacy {
    display: block;
    width: 100%;
    align-items: flex-start;
  }
}

.footer__links {
  font-size: 11px;
}

@media screen and (max-width: 767px) {
  .footer__links {
    line-height: 1.8;
  }
}

.footer__link {
  font-size: 11px;
  color: #ad95e6;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .floatingButton.onlySp {
    position: static;
    z-index: auto;
    visibility: visible;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    opacity: 1;
    transition: none;
    background: #fff;
  }

  .floatingButton__inner {
    padding: 12px 24px 24px;
  }

  .floatingButton .ctaButton {
    width: min(100%, 480px);
  }
}

.carousel {
  position: relative;
  width: calc(100vw - 400px);
  margin-top: 32px;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .carousel {
    width: 100vw;
  }
}

.carousel__slideContainer {
  height: auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(42, 88, 150, 0.24);
}

.carousel__slideContainer.swiper-slide-active {
  z-index: 10;
}

.carousel__slideContainer:not(.swiper-slide-active) {
  opacity: 0.4;
  transform: scale(0.9);
}

.carousel__slide {
  height: 100%;
  padding: 32px 48px;
  color: #01294d;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .carousel__slide {
    padding: 24px 20px;
  }
}

.carousel__companyInfo {
  font-size: 14px;
  line-height: 1.75;
}

@media screen and (max-width: 767px) {
  .carousel__companyInfo {
    font-size: 14px;
  }
}

.carousel__companyName {
  font-size: inherit;
  font-weight: 600;
  color: #1b75c3;
}

.carousel__companyDetail {
  font-size: inherit;
}

.carousel__title {
  margin-top: 12px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
}

@media screen and (max-width: 767px) {
  .carousel__title {
    margin-top: 4px;
    font-size: 18px;
  }
}

.carousel__examples {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 24px;
}

@media screen and (max-width: 767px) {
  .carousel__examples {
    gap: 4px;
    margin-top: 24px;
  }
}

.carousel__exampleArrow {
  width: 78px;
  height: 24px;
  padding: 6px 10px;
  font-size: 12px;
  color: #fff;
  background-image: url("/mirror-assets/images/right-arrow.png");
  background-position: center;
}

@media screen and (max-width: 767px) {
  .carousel__exampleArrow {
    width: 60px;
    height: 24px;
    padding: 6px 5px;
    font-size: 11px;
    background-image: url("/mirror-assets/images/right-arrow-sp.png");
  }
}

.carousel__exampleItem {
  display: flex;
  align-items: center;
  padding: 5px 8px;
  font-size: 12px;
  font-weight: 600;
  color: #b7b7b7;
  background-color: #f4f5f6;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
}

.carousel__exampleItem--featured {
  color: #3980cb;
  background-color: #f2f8fa;
  border-color: #d0e2e8;
}

@media screen and (max-width: 767px) {
  .carousel__exampleItem--featured {
    color: #1b75c3;
  }
}

.carousel__contents {
  display: flex;
  gap: 24px;
  margin-top: 20px;
}

@media screen and (max-width: 1280px) {
  .carousel__contents {
    flex-direction: column;
  }
}

@media screen and (max-width: 767px) {
  .carousel__contents {
    gap: 0;
    margin-top: 16px;
  }
}

.carousel__exampleDetail {
  padding-top: 11px;
}

@media screen and (max-width: 767px) {
  .carousel__exampleDetail {
    padding-top: 0;
    margin-top: 24px;
  }
}

.carousel__exampleDivision {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.carousel__exampleDivisionNote {
  margin-left: 40px;
  font-size: 12px;
  font-weight: 600;
}

.carousel__examplePoint {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-bottom: 12px;
  margin-top: 14px;
  border-bottom: 1px solid #dde0e4;
}

.carousel__examplePoint:last-child {
  padding-top: 8px;
  padding-bottom: 0;
  margin-top: 0;
  border: none;
}

@media screen and (max-width: 767px) {
  .carousel__examplePoint {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    padding-bottom: 10px;
    margin-top: 12px;
    border: none;
  }

  .carousel__examplePoint:last-child {
    padding-top: 4px;
  }
}

.carousel__examplePointNumber {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: #3980cb;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .carousel__examplePointNumber {
    color: #1b75c3;
    text-align: left;
  }
}

.carousel__examplePointText {
  font-size: 14px;
  line-height: 1.5;
}

@media screen and (max-width: 1280px) {
  .carousel__image {
    width: 100%;
    height: auto;
  }
}

.carousel__slideButton {
  top: 45%;
  width: 40px;
  height: 40px;
  padding: 0;
  background: #fff;
  border: 1px solid #3980cb;
  border-radius: 50%;
  transition: background 0.3s;
}

.carousel__slideButton:hover {
  background: #3980cb;
}

.carousel__slideButton::after {
  display: none;
}

.carousel__slideButtonInner {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.carousel__slideButtonInner::before,
.carousel__slideButtonInner::after {
  position: absolute;
  top: 50%;
  left: 35%;
  display: block;
  width: 12px;
  height: 2px;
  content: "";
  background: #3980cb;
  border-radius: 100px;
  transition: background 0.3s;
  transform: rotate(35deg);
  transform-origin: 100% 50%;
}

.carousel__slideButtonInner::after {
  transform: rotate(-35deg);
}

.carousel__slideButtonInner--prev {
  transform: scaleX(-1);
}

.carousel__slideButtonInner:hover::before,
.carousel__slideButtonInner:hover::after {
  background: #fff;
}

.carousel__pagination {
  position: static;
  margin-top: 16px;
}

.carousel__pagination .swiper-pagination-bullet {
  width: 40px;
  height: 4px;
  margin: 0 2px !important;
  background: #dde0e4;
  border-radius: 0;
  opacity: 1;
}

.carousel__pagination .swiper-pagination-bullet-active {
  background: #1b75c3;
}

.induction {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 90px;
  cursor: pointer;
  background: #fff;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(32, 81, 110, 0.1);
  text-decoration: none;
}

.induction--occupation {
  position: absolute;
  bottom: 0;
  left: 50%;
  max-width: 620px;
  transform: translateX(-50%);
}

.induction--faq {
  max-width: 700px;
  margin: 0 auto;
  background-color: #f2f8fa;
  box-shadow: none;
}

.induction__image {
  position: absolute;
  bottom: 0;
  left: 4%;
}

@media screen and (max-width: 810px) {
  .induction__image {
    left: 0;
  }
}

.induction__image--occupation {
  width: 100%;
  max-width: clamp(100px, 13.0208333333vw, 147px);
  height: auto;
}

.induction__image--faq {
  left: 1%;
  max-width: 228px;
  height: auto;
}

@media screen and (max-width: 1020px) {
  .induction__image--faq {
    max-width: clamp(120px, 15.625vw, 228px);
  }
}

@media screen and (max-width: 810px) {
  .induction__image--faq {
    left: 0;
    max-width: clamp(100px, 13.0208333333vw, 228px);
  }
}

.induction__message {
  position: relative;
  left: 27%;
  font-size: clamp(12px, 1.5625vw, 20px);
  font-weight: 600;
  line-height: 1.5;
  color: #01294d;
  text-align: left;
}

_::-webkit-full-page-media,
_:future,
:root .induction__message.isZoom {
  font-size: clamp(8px, 1.0416666667vw, 20px);
}

@media screen and (max-width: 810px) {
  .induction__message {
    left: 25%;
  }
}

.induction__messageEmphasis {
  font-size: clamp(12px, 1.5625vw, 20px);
  color: #3980cb;
}

_::-webkit-full-page-media,
_:future,
:root .induction__messageEmphasis.isZoom {
  font-size: clamp(8px, 1.0416666667vw, 20px);
}

.induction__message--faq {
  left: 37%;
}

@media screen and (max-width: 1020px) {
  .induction__message--faq {
    left: 30%;
  }
}

@media screen and (max-width: 810px) {
  .induction__message--faq {
    left: 25%;
  }
}

.induction__animation {
  position: absolute;
  top: 50%;
  right: -18%;
  width: clamp(20px, 2.6041666667vw, 32px);
  height: auto;
  transform: translateY(-50%) rotate(-90deg);
}

@media screen and (max-width: 810px) {
  .induction__animation {
    right: -16%;
  }
}

@media screen and (max-width: 1020px) {
  .induction__animation--faq {
    right: -16%;
  }
}

.inductionSp {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 319px;
  padding: 12px 0;
  background: #fff;
  border: 2px solid #72a8db;
  border-radius: 8px;
}

.inductionSp--occupation {
  width: 100%;
}

.inductionSp--faq {
  margin: 0 auto;
  background-color: #f2f8fa;
  border: none;
  box-shadow: none;
}

.inductionSp__message {
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

.inductionSp__messageEmphasis {
  color: #3980cb;
}

.inductionSp__image {
  position: absolute;
  bottom: -130%;
}

.ctaButton {
  display: inline-grid;
  place-items: center;
  width: 303px;
  height: 54px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(to right, #2c83d0, #0065bd);
  border: none;
  border-radius: 4px;
}

#fixedForm {
  border: none;
  border-left: solid 1px #dde0e4;
}

#form_wide_06 {
  border: none;
}

.fixedForm {
  display: none;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 200;
  box-sizing: border-box;
  width: 400px;
  height: 100%;
  max-height: 100%;
  padding-top: 74px;
  background-color: #fff;
  border: solid 1px #707070;
  transition: height 0.2s;
}

@media screen and (max-width: 767px) {
  .fixedForm {
    display: none;
  }
}

.fixedForm__content {
  height: 100%;
  overflow-x: hidden;
  /* Mirror: the iframe scrolls internally (see .fixedForm__iframe), so hide
     this wrapper's own scrollbar to avoid a redundant second scrollbar. */
  overflow-y: hidden;
}

.fixedForm__iframe {
  width: 100%;
  /* Mirror fallback: krs.bz sends its height via postMessage only to the
     production parent domain, so on a local/other-origin host the iframe
     never gets resized and stays at its default ~150px. Make it fill the
     panel and scroll internally (see scrolling="auto" on the iframe) so the
     whole form is reachable regardless of its height. */
  height: 100%;
}

.fixedForm__iframe.bgcolor {
  background-color: #c8e6f9;
  animation: fadeOut 1.5s linear forwards;
}

@keyframes fadeOut {
  0% {
    background-color: #c8e6f9;
  }

  100% {
    background-color: #fff;
  }
}

.fixedForm__openButton {
  display: none;
}

.fixedForm__closeButton {
  display: none;
}

.fixedForm--fullHeight {
  height: 100%;
}

.fixedForm--fullHeight .fixedForm__content {
  overflow: scroll;
}

.fixedForm--fullHeight .fixedForm__openButton {
  display: none;
}

.fixedForm--isOpenInSp {
  display: block;
}

@media screen and (width <=767px) {
  .fixedForm {
    left: 0;
    box-sizing: border-box;
    width: 100vw;
    height: 100%;
    padding-top: 54px;
  }

  .fixedForm__content {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .fixedForm__openButton {
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    padding: 10px 0;
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #057cd0;
    border: 0;
    border-radius: 0;
  }

  .fixedForm__closeButton {
    position: absolute;
    top: 54px;
    right: 0;
    display: block;
    padding: 10px;
    cursor: pointer;
  }

  .fixedForm__closeButtonIcon {
    display: inline-block;
    width: 4px;
    height: 20px;
    padding: 0;
    margin: 0 10px;
    background: #707070;
    transform: rotate(45deg);
  }

  .fixedForm__closeButtonIcon::before {
    position: absolute;
    top: 50%;
    left: -8px;
    display: block;
    width: 20px;
    height: 4px;
    margin-top: -2px;
    content: "";
    background: #707070;
  }

  .header {
    height: 54px;
  }

  .header .logo img {
    height: 24px;
    margin: 15px 0 15px 20px;
  }

  .header .menubtn {
    top: 7px;
    right: 20px;
    width: 40px;
    height: 40px;
  }

  .header .menubtn .line {
    width: 40px;
    height: 5px;
  }

  .header .menubtn .line::before,
  .header .menubtn .line::after {
    width: 40px;
    height: 5px;
  }

  .header .menubtn .line::before {
    top: -12px;
  }

  .header .menubtn .line::after {
    top: 12px;
  }

  .menunav {
    width: 100%;
  }

  .menunav ul:nth-child(1) {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .menunav ul li a {
    padding: 8px 0 8px 1.4em;
    font-size: 16px;
  }

  .badge_no1 {
    position: absolute;
    right: 5vw;
    bottom: 33vw;
    width: 32vw;
  }

  .forSP {
    display: block;
  }

  .forTab {
    display: none;
  }

  .forPC {
    display: none;
  }
}

.company {
  margin: 50px 0 0;
  padding: 0 15px;
}

@media screen and (max-width: 767px) {
  .company {
    margin: 40px 0 0;
  }
}

.company__inner {
  max-width: 880px;
  margin: 0 auto;
}

.company__list {
  margin-top: 30px;
  padding: 26px 30px;
  border: 1px solid #EBEBEB;
  border-radius: 8px;
}

@media screen and (max-width: 767px) {
  .company__list {
    padding: 28px 15px;
  }
}

.company__listItem {
  display: flex;
  padding-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .company__listItem {
    display: block;
    padding-bottom: 14px;
  }
}

.company__listItem:nth-child(n+2) {
  padding-top: 12px;
  background-image: linear-gradient(to right, #EBEBEB, #EBEBEB 2px, transparent 2px, transparent 6px);
  background-size: 6px 2px;
  background-repeat: repeat-x;
  background-position: left top;
}

@media screen and (max-width: 767px) {
  .company__listItem:nth-child(n+2) {
    padding-top: 16px;
  }
}

.company__listItem:last-child {
  padding-bottom: 0;
}

.company__listItem dt {
  width: 20%;
  max-width: 11em;
  padding: 0 20px;
  line-height: calc(25.2 / 14);
  font-size: 14px;
  font-weight: bold;
  color: #3980CB;
}

@media screen and (max-width: 767px) {
  .company__listItem dt {
    width: auto;
    max-width: inherit;
    padding: 0 10px;
  }
}

.company__listItem dd {
  flex: 1;
  line-height: calc(25.2 / 14);
  font-size: 14px;
  font-weight: 300;
  color: #01294D;
}

@media screen and (max-width: 767px) {
  .company__listItem dd {
    padding: 0 10px;
    font-size: 13px;
  }
}

.company__listItem dd ul li {
  line-height: calc(25.2 / 14);
  font-size: 14px;
  color: #01294D;
}

@media screen and (max-width: 767px) {
  .company__listItem dd ul li {
    font-size: 13px;
  }
}

.contactLink {
  margin-top: 50px;
  padding: 30px 15px 55px;
}

@media screen and (max-width: 767px) {
  .contactLink {
    margin-top: 40px;
    padding: 0 15px;
  }
}

@media screen and (max-width: 767px) {
  .contactLink__induction.onlyPc {
    display: none;
  }
}

.contactLink__induction.onlySp {
  display: none;
}

@media screen and (max-width: 767px) {
  .contactLink__induction.onlySp {
    display: flex;
  }
}

@media screen and (max-width: 767px) {
  .contactLink__induction {
    padding: 0 0 180px;
  }
}

.codex-tool-comparison {
  padding: 72px 20px 88px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.9), rgba(247, 251, 255, 0.96)),
    url("/mirror-assets/images/bg-grid.png") center top / 720px auto;
}

.codex-tool-comparison__head {
  text-align: center;
}

.codex-tool-comparison__head .heading__separate {
  margin-right: auto;
  margin-left: auto;
}

.codex-tool-comparison.has-heading-motion .codex-tool-comparison__head > * {
  opacity: 0;
  transition: opacity 480ms ease;
  will-change: opacity;
}

.codex-tool-comparison.has-heading-motion .codex-tool-comparison__head .heading__subText {
  transition-delay: 0ms;
}

.codex-tool-comparison.has-heading-motion .codex-tool-comparison__head .heading__text {
  transition-delay: 80ms;
}

.codex-tool-comparison.has-heading-motion .codex-tool-comparison__head .heading__separate {
  transition-delay: 160ms;
}

.codex-tool-comparison.has-heading-motion.is-heading-visible .codex-tool-comparison__head > * {
  opacity: 1;
}

.codex-tool-comparison__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  max-width: 1120px;
  margin: 48px auto 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d8e7f8;
  border-radius: 8px;
  box-shadow: 0 24px 50px rgba(42, 88, 150, 0.14);
}

.codex-tool-comparison__introText {
  padding: clamp(28px, 4vw, 56px);
}

.codex-tool-comparison__label {
  font-family: newnord, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  color: #3980cb;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.codex-tool-comparison__introText h3 {
  margin-top: 18px;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.45;
  color: #01294d;
}

.codex-tool-comparison__introText p:not(.codex-tool-comparison__label) {
  margin-top: 22px;
  font-size: clamp(15px, 1.3vw, 17px);
  font-weight: 500;
  line-height: 2;
  color: #3f4d58;
}

.codex-tool-comparison__visual {
  display: flex;
  align-items: center;
  height: 100%;
  min-height: 360px;
  margin: 0;
  background: linear-gradient(135deg, #eff7ff, #ffffff);
}

.codex-tool-comparison__visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.codex-compare-table-wrap {
  max-width: 1120px;
  margin: 32px auto 0;
  overflow-x: auto;
  background: #fff;
  border: 1px solid #d8e7f8;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(42, 88, 150, 0.12);
}

.codex-compare-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.65;
}

.codex-compare-table th,
.codex-compare-table td {
  padding: 18px 16px;
  border-bottom: 1px solid #dfe9f6;
  border-left: 1px solid #edf3fb;
  vertical-align: middle;
}

.codex-compare-table thead th {
  color: #fff;
  background: #2f7dca;
  font-weight: 700;
  text-align: center;
}

.codex-compare-table thead th:first-child,
.codex-compare-table tbody th {
  border-left: 0;
}

.codex-compare-table tbody th {
  width: 150px;
  color: #01294d;
  background: #f3f8fe;
  font-weight: 700;
  text-align: left;
}

.codex-compare-table td {
  color: #34434d;
  font-weight: 500;
}

.codex-compare-table .is-codex {
  color: #01294d;
  background: #e9f5ff;
  font-weight: 700;
}

.codex-compare-table thead .is-codex {
  color: #fff;
  background: linear-gradient(135deg, #1e70d8, #1ab3c2);
}

.codex-tool-comparison__note {
  max-width: 1120px;
  padding: 22px 26px;
  margin: 24px auto 0;
  color: #34434d;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.9;
  background: #fff;
  border-left: 5px solid #1ab3c2;
  box-shadow: 0 12px 32px rgba(42, 88, 150, 0.1);
}

.codex-acceleration {
  max-width: 1280px;
  margin: 44px auto 0;
  overflow: hidden;
  color: #09285b;
  background: #fff;
  border: 1px solid #dce8f6;
  border-radius: 8px;
  box-shadow: 0 20px 46px rgba(42, 88, 150, 0.12);
}

.codex-acceleration__header {
  padding: 42px 28px 34px;
  text-align: center;
}

.codex-acceleration__header h2 {
  margin: 0;
  color: #0b2860;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

.codex-acceleration__header h2 span {
  font-size: inherit;
  line-height: inherit;
}

.codex-acceleration__header p {
  margin-top: 16px;
  color: #314d75;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
}

.codex-acceleration__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0 28px 48px;
  margin: 0;
  list-style: none;
}

.codex-acceleration__steps::before {
  position: absolute;
  top: 26px;
  right: calc(12.5% + 28px);
  left: calc(12.5% + 28px);
  height: 2px;
  content: "";
  background: #17376f;
}

.codex-acceleration-step {
  position: relative;
  min-width: 0;
  padding: 0 28px;
  text-align: center;
}

.codex-acceleration-step__number {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin: 0 auto;
  color: #fff;
  background: #0b2860;
  border-radius: 50%;
  font-family: newnord, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.codex-acceleration-step__icon {
  display: grid;
  place-items: center;
  width: 116px;
  height: 116px;
  margin: 10px auto 14px;
  color: #14366e;
  background: #eef5ff;
  border-radius: 50%;
}

.codex-acceleration-step__icon svg {
  width: 74px;
  height: 74px;
  overflow: visible;
  fill: none;
  stroke: currentcolor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.codex-acceleration-step__visual {
  width: min(100%, 210px);
  height: 210px;
  margin: 10px auto 14px;
  overflow: visible;
  background: transparent;
}

.codex-acceleration-step__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.codex-introduction-design-visual {
  width: min(100%, 230px);
  aspect-ratio: 1694 / 928;
  margin: 10px auto 14px;
  overflow: hidden;
  background: #eef5ff;
  border: 1px solid #dce8f6;
  border-radius: 6px;
  box-shadow: 0 8px 18px rgba(42, 88, 150, 0.1);
}

.codex-introduction-design-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.codex-analysis-mini {
  position: relative;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  width: min(100%, 230px);
  height: 128px;
  padding: 0;
  margin: 10px auto 14px;
  overflow: hidden;
  color: inherit;
  font: inherit;
  text-align: left;
  background: #f4f8fe;
  border: 1px solid #dbe7f5;
  border-radius: 9px;
  box-shadow: 0 8px 20px rgba(42, 88, 150, 0.12);
}

.codex-analysis-mini > aside {
  display: grid;
  align-content: start;
  gap: 7px;
  padding: 10px 7px;
  background: #fff;
  border-right: 1px solid #e2e9f3;
}

.codex-analysis-mini > aside i {
  display: block;
  width: 15px;
  height: 5px;
  background: #d8e1ed;
  border-radius: 3px;
}

.codex-analysis-mini > aside i:first-child {
  height: 15px;
  margin-bottom: 3px;
  background: linear-gradient(135deg, #52a0ff, #256fe8);
  border-radius: 4px;
  box-shadow: 0 3px 8px rgba(47, 128, 237, 0.25);
}

.codex-analysis-mini__body {
  min-width: 0;
  padding: 9px 8px 8px;
}

.codex-analysis-mini__body > header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 38px 42px;
  gap: 4px;
  align-items: center;
  height: 15px;
  margin-bottom: 6px;
}

.codex-analysis-mini__body > header i {
  width: 68%;
  height: 5px;
  background: #26354b;
  border-radius: 4px;
}

.codex-analysis-mini__body > header b {
  display: grid;
  place-items: center;
  height: 13px;
  color: #236fdc;
  font-size: 6px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  background: #eaf3ff;
  border-radius: 3px;
}

.codex-analysis-mini__body > header b.is-growth {
  color: #3a9b51;
  background: #ecf8ef;
}

.codex-analysis-mini__grid {
  display: grid;
  grid-template-columns: 1.45fr 0.7fr;
  grid-template-rows: 61px 22px;
  gap: 5px;
}

.codex-analysis-mini__trend,
.codex-analysis-mini__donut,
.codex-analysis-mini__bars {
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  border: 1px solid #e2e8f1;
  border-radius: 5px;
}

.codex-analysis-mini__trend .is-grid {
  fill: none;
  stroke: #e8eef6;
  stroke-width: 0.8;
}

.codex-analysis-mini__trend .is-area {
  fill: url("#miniTrendFill");
  opacity: 0;
  transform: translateY(7px);
  transition: opacity 500ms ease, transform 700ms ease;
}

.codex-analysis-mini__trend .is-line {
  fill: none;
  stroke: #2f80ed;
  stroke-dasharray: 250;
  stroke-dashoffset: 250;
  stroke-linecap: round;
  stroke-width: 2;
  transition: stroke-dashoffset 1200ms cubic-bezier(0.35, 0, 0.15, 1) 120ms;
}

.codex-analysis-mini__trend .is-point {
  fill: #2f80ed;
  opacity: 0;
  transform: scale(0);
  transform-box: fill-box;
  transform-origin: center;
  transition: opacity 240ms ease 850ms, transform 300ms cubic-bezier(0.2, 1.4, 0.4, 1) 850ms;
}

.codex-analysis-mini__trend .is-kpi {
  fill: #2b6fd1;
  font-size: 6px;
  font-weight: 800;
  opacity: 0;
  transition: opacity 260ms ease 920ms;
}

.codex-analysis-mini__donut circle {
  fill: none;
  stroke-width: 8;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}

.codex-analysis-mini__donut .is-track {
  stroke: #e9eff7;
}

.codex-analysis-mini__donut .is-value {
  stroke: #ff9138;
  stroke-dasharray: 0 100;
  stroke-linecap: round;
  transition: stroke-dasharray 900ms ease 240ms;
}

.codex-analysis-mini__donut text {
  fill: #27364c;
  font-size: 8px;
  font-weight: 800;
  text-anchor: middle;
}

.codex-analysis-mini__bars {
  position: relative;
  display: flex;
  grid-column: 1 / -1;
  gap: 7px;
  align-items: flex-end;
  padding: 4px 10px 3px;
}

.codex-analysis-mini__bars::after {
  position: absolute;
  top: 2px;
  right: 4px;
  color: #2f70ce;
  font-size: 5px;
  font-weight: 800;
  content: "1,980";
  opacity: 0;
  transition: opacity 260ms ease 720ms;
}

.codex-analysis-mini__bars i {
  flex: 1;
  height: var(--mini-bar);
  background: linear-gradient(180deg, #5b9cff, #2877ed);
  border-radius: 2px 2px 0 0;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 650ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.codex-analysis-mini__bars i:nth-child(2) { transition-delay: 80ms; }
.codex-analysis-mini__bars i:nth-child(3) { transition-delay: 160ms; }
.codex-analysis-mini__bars i:nth-child(4) { transition-delay: 240ms; }
.codex-analysis-mini__bars i:nth-child(5) { transition-delay: 320ms; }

.codex-analysis-mini.is-animated .codex-analysis-mini__trend .is-area {
  opacity: 1;
  transform: translateY(0);
}

.codex-analysis-mini.is-animated .codex-analysis-mini__trend .is-line {
  stroke-dashoffset: 0;
}

.codex-analysis-mini.is-animated .codex-analysis-mini__trend .is-point {
  opacity: 1;
  transform: scale(1);
}

.codex-analysis-mini.is-animated .codex-analysis-mini__trend .is-kpi,
.codex-analysis-mini.is-animated .codex-analysis-mini__bars::after {
  opacity: 1;
}

.codex-analysis-mini.is-animated .codex-analysis-mini__donut .is-value {
  stroke-dasharray: 68 32;
}

.codex-analysis-mini.is-animated .codex-analysis-mini__bars i {
  transform: scaleY(1);
}

@media (prefers-reduced-motion: reduce) {
  .codex-analysis-mini__trend .is-area,
  .codex-analysis-mini__trend .is-line,
  .codex-analysis-mini__donut .is-value,
  .codex-analysis-mini__bars i {
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}

.codex-acceleration-step h3 {
  margin: 0;
  color: #0b2860;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;
}

.codex-acceleration-step p {
  max-width: 220px;
  margin: 16px auto 0;
  color: #2e476c;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  text-align: left;
}

.codex-acceleration__results,
.codex-acceleration__cases {
  padding: 26px 28px;
  background: #f3f8ff;
  border-top: 1px solid #e1ebf7;
}

.codex-acceleration__results > h3,
.codex-acceleration__cases > h3 {
  margin: 0 0 20px;
  color: #0b2860;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.codex-acceleration__results > h3 span {
  font-size: 18px;
}

.codex-result-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.codex-result {
  min-width: 0;
  padding: 20px 16px;
  background: #fff;
  border: 1px solid #dce8f6;
  border-radius: 6px;
  box-shadow: 0 7px 18px rgba(42, 88, 150, 0.08);
}

.codex-result h4 {
  margin: 0 0 16px;
  color: #0b2860;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.codex-result__transition {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
}

.codex-result__transition span {
  min-width: 0;
  color: #596a7e;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.codex-result__transition small {
  display: block;
  margin-bottom: 8px;
  color: #7d8998;
  font-size: 10px;
  line-height: 1;
}

.codex-result__transition b {
  color: #8ba9d0;
  font-size: 20px;
  font-weight: 500;
}

.codex-result__transition .is-after {
  color: #1167d8;
}

.codex-result__transition .is-after small {
  color: #1167d8;
}

.codex-acceleration__cases {
  padding-top: 22px;
  background: #f8fbff;
}

.codex-case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.codex-case {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dce8f6;
  border-radius: 6px;
}

.codex-case__visual {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  background: linear-gradient(145deg, #dceafb, #f6faff);
  border-right: 1px solid #dce8f6;
}

.codex-case__screen,
.codex-case__board {
  position: absolute;
  top: 24px;
  left: 50%;
  width: 112px;
  height: 78px;
  padding: 12px;
  background: #102b54;
  border: 5px solid #8aa5c2;
  border-radius: 3px;
  transform: translateX(-50%);
}

.codex-case__screen i {
  display: block;
  width: 78%;
  height: 4px;
  margin-bottom: 8px;
  background: #56a5ff;
  box-shadow: 12px 0 #8ed6ff;
}

.codex-case__screen i:nth-child(2) {
  width: 54%;
}

.codex-case__screen i:nth-child(3) {
  width: 68%;
  background: #9fe0c5;
}

.codex-case__screen i:nth-child(4) {
  width: 42%;
}

.codex-case__board {
  background: #fff;
  border-color: #b4c7dc;
}

.codex-case__board i {
  display: block;
  width: 80%;
  height: 4px;
  margin: 8px auto;
  background: #4a90e2;
}

.codex-case__board i:nth-child(2) {
  width: 60%;
}

.codex-case__people {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
}

.codex-case__people i {
  position: relative;
  display: block;
  width: 34px;
  height: 44px;
  background: #56728e;
  border-radius: 17px 17px 5px 5px;
}

.codex-case__people i::before {
  position: absolute;
  top: -14px;
  left: 8px;
  width: 18px;
  height: 18px;
  content: "";
  background: #d7b191;
  border-radius: 50%;
}

.codex-case__people i:nth-child(2) {
  height: 54px;
  background: #2c5f92;
}

.codex-case__body {
  min-width: 0;
  padding: 20px;
}

.codex-case__body h4 {
  margin: 0;
  color: #0b2860;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
}

.codex-case__body > p {
  margin-top: 10px;
  color: #2e476c;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.7;
}

.codex-case__body dl {
  padding: 10px 14px;
  margin: 14px 0 0;
  background: #f1f6fd;
  border-radius: 4px;
}

.codex-case__body dl div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.codex-case__body dt,
.codex-case__body dd {
  color: #1167d8;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.7;
}

.codex-case__body dd {
  margin: 0;
}

.codex-acceleration__partners {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 38px;
  color: #0b2860;
  border-top: 1px solid #e1ebf7;
}

.codex-acceleration__partners strong {
  font-size: 15px;
  font-weight: 700;
}

.codex-acceleration__partners strong span {
  font-size: 12px;
}

.codex-acceleration__partners > span {
  color: #274b78;
  font-size: 17px;
  font-weight: 700;
}

.codex-tool-axis-list {
  display: grid;
  gap: 28px;
  max-width: 1120px;
  margin: 44px auto 0;
}

.codex-tool-axis {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(28px, 4vw, 52px);
  background: #fff;
  border: 1px solid #d8e7f8;
  border-radius: 8px;
  box-shadow: 0 20px 46px rgba(42, 88, 150, 0.12);
}

.codex-tool-axis--reverse .codex-tool-axis__visual {
  order: 2;
}

.codex-tool-axis__body {
  min-width: 0;
}

.codex-tool-axis__number {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #1e70d8;
  font-family: newnord, sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.codex-tool-axis__number::after {
  display: block;
  width: 72px;
  height: 2px;
  content: "";
  background: #1ab3c2;
}

.codex-tool-axis__body h3 {
  margin-top: 22px;
  color: #01294d;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.45;
}

.codex-tool-axis__body p:not(.codex-tool-axis__number) {
  margin-top: 22px;
  color: #3f4d58;
  font-size: clamp(15px, 1.35vw, 17px);
  font-weight: 500;
  line-height: 2;
}

.codex-tool-axis__visual {
  display: grid;
  place-items: center;
  min-height: 260px;
  padding: 26px;
  background:
    radial-gradient(circle at 18% 18%, rgba(26, 179, 194, 0.18), transparent 30%),
    linear-gradient(135deg, #f5fbff 0%, #edf6ff 100%);
  border-radius: 8px;
}

.axis-window {
  width: min(100%, 360px);
  padding: 24px;
  background: #fff;
  border: 2px solid #c8dcf4;
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(42, 88, 150, 0.14);
}

.axis-window span,
.axis-window b {
  display: block;
  color: #01294d;
  font-weight: 700;
}

.axis-window span {
  font-size: 16px;
}

.axis-window b {
  margin-top: 18px;
  font-size: 28px;
  line-height: 1.25;
}

.axis-window i {
  display: block;
  height: 12px;
  margin-top: 14px;
  background: #d8e4f2;
  border-radius: 999px;
}

.axis-window i:nth-of-type(2) {
  width: 78%;
}

.axis-window i:nth-of-type(3) {
  width: 58%;
}

.axis-window--chat {
  border-color: #bfe7ec;
}

.axis-window--local {
  border-color: #cbd4e2;
}

.axis-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, 380px);
}

.axis-flow span {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 88px;
  color: #01294d;
  background: #fff;
  border: 2px solid #c8dcf4;
  border-radius: 8px;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(42, 88, 150, 0.12);
}

.axis-flow span:last-child {
  color: #fff;
  background: linear-gradient(135deg, #1e70d8, #1ab3c2);
  border-color: transparent;
}

@media screen and (max-width: 900px) {
  .codex-tool-comparison {
    padding: 48px 20px 64px;
  }

  .codex-acceleration__header h2 {
    font-size: 34px;
  }

  .codex-acceleration__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 0 24px 32px;
  }

  .codex-acceleration__steps::before,
  .codex-acceleration-step::before,
  .codex-acceleration-step::after {
    display: none;
  }

  .codex-acceleration-step {
    padding: 20px;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .codex-result-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .codex-case-grid {
    grid-template-columns: 1fr;
  }

  .codex-tool-comparison__intro,
  .codex-tool-axis,
  .codex-tool-axis--reverse {
    grid-template-columns: 1fr;
  }

  .codex-tool-axis--reverse .codex-tool-axis__visual {
    order: 0;
  }

  .codex-tool-comparison__visual {
    min-height: 0;
  }

  .codex-tool-comparison__visual img {
    height: auto;
    object-fit: contain;
  }
}

@media screen and (max-width: 767px) {
  .codex-tool-comparison__intro {
    margin-top: 32px;
  }

  .codex-tool-comparison__introText,
  .codex-tool-axis {
    padding: 24px 18px;
  }

  .codex-compare-table {
    min-width: 820px;
    font-size: 13px;
  }

  .codex-compare-table th,
  .codex-compare-table td {
    padding: 14px 12px;
  }

  .codex-tool-axis__visual {
    min-height: 220px;
    padding: 18px;
  }

  .codex-acceleration {
    margin-top: 28px;
  }

  .codex-acceleration__header {
    padding: 30px 18px 24px;
  }

  .codex-acceleration__header h2 {
    font-size: 28px;
  }

  .codex-acceleration__header h2 span {
    display: block;
  }

  .codex-acceleration__header p {
    margin-top: 12px;
    font-size: 15px;
  }

  .codex-acceleration__steps {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 14px 24px;
  }

  .codex-acceleration-step {
    display: grid;
    grid-template-columns: 44px 72px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 12px;
    padding: 16px 14px;
    text-align: left;
  }

  .codex-acceleration-step__number {
    grid-row: 1 / 3;
    width: 44px;
    height: 44px;
    margin: 0;
    align-self: center;
    font-size: 16px;
  }

  .codex-acceleration-step__icon {
    grid-row: 1 / 3;
    width: 72px;
    height: 72px;
    margin: 0;
    align-self: center;
  }

  .codex-acceleration-step__icon svg {
    width: 48px;
    height: 48px;
  }

  .codex-acceleration-step h3 {
    align-self: end;
    font-size: 19px;
  }

  .codex-acceleration-step p {
    max-width: none;
    margin: 5px 0 0;
    font-size: 13px;
    line-height: 1.65;
  }

  .codex-acceleration-step:has(.codex-analysis-mini) {
    grid-template-columns: 44px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
  }

  .codex-acceleration-step:has(.codex-analysis-mini) .codex-acceleration-step__number {
    grid-row: 1 / 4;
  }

  .codex-acceleration-step:has(.codex-analysis-mini) .codex-analysis-mini {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    margin: 0 0 10px;
  }

  .codex-acceleration-step:has(.codex-analysis-mini) h3 {
    grid-column: 2;
    grid-row: 2;
  }

  .codex-acceleration-step:has(.codex-analysis-mini) p {
    grid-column: 2;
    grid-row: 3;
  }

  .codex-acceleration-step:has(.codex-introduction-design-visual) {
    grid-template-columns: 44px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
  }

  .codex-acceleration-step:has(.codex-introduction-design-visual) .codex-acceleration-step__number {
    grid-row: 1 / 4;
  }

  .codex-acceleration-step:has(.codex-introduction-design-visual) .codex-introduction-design-visual {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    margin: 0 0 10px;
  }

  .codex-acceleration-step:has(.codex-introduction-design-visual) h3 {
    grid-column: 2;
    grid-row: 2;
  }

  .codex-acceleration-step:has(.codex-introduction-design-visual) p {
    grid-column: 2;
    grid-row: 3;
  }

  .codex-acceleration-step:has(.codex-acceleration-step__visual) {
    grid-template-columns: 44px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
  }

  .codex-acceleration-step:has(.codex-acceleration-step__visual) .codex-acceleration-step__number {
    grid-row: 1 / 4;
  }

  .codex-acceleration-step:has(.codex-acceleration-step__visual) .codex-acceleration-step__visual {
    grid-column: 2;
    grid-row: 1;
    width: 160px;
    height: 160px;
    margin: 0 auto 12px;
  }

  .codex-acceleration-step:has(.codex-acceleration-step__visual) h3 {
    grid-column: 2;
    grid-row: 2;
  }

  .codex-acceleration-step:has(.codex-acceleration-step__visual) p {
    grid-column: 2;
    grid-row: 3;
  }

  .codex-acceleration__results,
  .codex-acceleration__cases {
    padding: 22px 14px;
  }

  .codex-acceleration__results > h3,
  .codex-acceleration__cases > h3 {
    font-size: 21px;
  }

  .codex-result-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .codex-result {
    padding: 18px 14px;
  }

  .codex-case {
    display: block;
  }

  .codex-case__visual {
    min-height: 160px;
    border-right: 0;
    border-bottom: 1px solid #dce8f6;
  }

  .codex-case__body {
    padding: 18px 16px;
  }

  .codex-acceleration__partners {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 16px 22px;
    padding: 20px 18px;
  }

  .codex-acceleration__partners strong {
    width: 100%;
  }

  .codex-acceleration__partners > span {
    font-size: 15px;
  }
}
