
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200&display=swap");
/* ============================
   common
   ============================ */
/* custom properties */
:root {
  /* colors */
  --color-white: #fff;
  --color-black: #000;
  --blue_50: #f5f7fd;
  --green_100: #00ad92;
  --blue_10: #eef2fa;
  --blue_20: #dce4f5;
  --blue_100: #2c31a6;
  --gray_blue: #cfd8dc;
  --blue_30: #cbd7f0;
  --blue_60: #5b60c9;
  /* background */
  --color-bg_thema: linear-gradient(to right, var(--blue_10), var(--blue_20));
}
/* utility */
.dx-large-only,
html[lang="en"] .dx-large-only--en {
  display: block;
  @media screen and (max-width: 899px) {
    display: none;
  }
}
.dx-small-only {
  display: none;
  @media screen and (max-width: 899px) {
    display: block;
  }
}
.dx-text--em {
  font-weight: 700;
}
/* ============================
  component
   ============================ */
/* page header */
.c-dx-page-header {
  height: 280px;
  padding-bottom: 48px;
  @media screen and (max-width: 899px) {
    height: auto;
  }
}
.c-dx-page-header__inner {
  display: flex;
  height: 100%;
  width: 100%;
  @media screen and (max-width: 899px) {
    flex-direction: column;
  }
}
.c-dx-page-header__textarea {
  background: linear-gradient(to right, var(--blue_10), var(--blue_20));
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  margin-left: -6.8%;
  padding-left: calc(6.8% + 24px);
  @media screen and (max-width: 899px) {
    width: auto;
    margin-left: 0;
    padding: 32px 24px;
  }
}
.c-dx-page-header__textarea-inner {
  width: 80%;
  @media screen and (max-width: 899px) {
    width: auto;
  }
}
.c-dx-page-header__title {
  font-size: 38px;
  line-height: 1.5;
  font-weight: 400;
  @media screen and (max-width: 899px) {
    font-size: 28px;
  }
}
.c-dx-page-header__text {
  font-size: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--gray_blue);
  line-height: 1.8;
  margin-top: 16px;
  margin-bottom: 0;
}
.c-dx-page-header__image {
  width: 50%;
  position: relative;
  z-index: 1;
  @media screen and (max-width: 899px) {
    width: 100%;
  }
  img {
    width: 100%;
    height: 100%;
    -o-object-position: right;
       object-position: right;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
}
/* card grid */
.c-dx-card {
  display: grid;
  grid-template-columns: repeat(var(--columns), minmax(0, 1fr));
  padding: 16px 0 96px;
  counter-reset: item-number;
  margin: 0;
  @media screen and (max-width: 899px) {
    grid-template-columns: 1fr;
  }
}
.c-dx-card--3col {
  --columns: 3;
  gap: 24px;
  @media screen and (max-width: 899px) {
    gap: 16px;
  }
}
.c-dx-card--4col {
  --columns: 4;
  gap: 24px;
  @media screen and (max-width: 899px) {
    gap: 16px;
  }
}
.c-dx-card__item {
  border: 2px solid var(--blue_30);
  border-radius: 10px;
  padding: 16px 16px 24px;
  gap: 16px;
  position: relative;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  justify-items: center;
}
.c-dx-card__item--num {
  @media screen and (max-width: 899px) {
    margin-top: 18px;
  }
}
.c-dx-card__item--num::before {
  content: counter(item-number);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  font-size: 16px;
  counter-increment: item-number;
  background-color: var(--gray_blue);
  border-radius: 5px;
  position: absolute;
  top: -20px;
  font-weight: 700;
}
.c-dx-card__item-title {
  font-size: 18px;
  line-height: 1.8;
  font-weight: 700;
  text-align: center;
  border-bottom: 2px solid var(--blue_30);
  padding-bottom: 16px;
  margin-block: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 64px;
  @media screen and (max-width: 899px) {
    font-size: 16px;
    min-height: auto;
  }
}
.c-dx-card__item-image {
  width: 100px;
  height: 100px;
  display: inline-block;
  text-align: center;
}
.c-dx-card__item-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  margin: 0;
}
/* anchor */
.c-dx-anchor {
  display: block;
  padding-bottom: 96px;
  @media screen and (max-width: 899px) {
    padding-inline: 20px;
  }
}
.c-dx-anchor__nav {
  border-top: 1px solid var(--gray_blue);
  border-bottom: 1px solid var(--gray_blue);
  padding-inline: 60px;
  @media screen and (max-width: 899px) {
    padding-block: 24px;
    padding-inline: 20px;
  }
}
.c-dx-anchor__nav-inner {
  max-width: 1154px;
  display: flex;
  align-items: stretch;
  position: relative;
  margin: 0 auto;
  @media screen and (max-width: 899px) {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
.c-dx-anchor__item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  position: relative;
  padding: 16px;
  @media screen and (max-width: 899px) {
    height: auto;
    padding: 0;
  }
}
.c-dx-anchor__link {
  color: inherit;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.5;
  span:hover {
    color: var(--blue_100);
    text-decoration: underline;
  }
}
.c-dx-anchor__nav-inner .c-dx-anchor__item + .c-dx-anchor__item::before,
.c-dx-anchor__nav-inner::before,
.c-dx-anchor__nav-inner::after {
  content: "";
  position: absolute;
  top: 10%;
  height: 80%;
  width: 1px;
  background: var(--gray_blue);
  transform: rotate(20deg);
  @media screen and (max-width: 899px) {
    content: none;
  }
}
.c-dx-anchor__nav-inner .c-dx-anchor__item + .c-dx-anchor__item::before {
  left: 0;
}
.c-dx-anchor__nav-inner::before {
  left: 12px;
}
.c-dx-anchor__nav-inner::after {
  right: 12px;
}
.c-dx-anchor__label {
  display: inline-flex;
  align-items: flex-start;
  gap: 4px;
  padding: 0 16px;
  @media screen and (max-width: 899px) {
    padding: 0;
  }
}
.c-dx-anchor__label::before {
  content: "";
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgZmlsbD0ibm9uZSIgdmlld0JveD0iMCAwIDE2IDE2Ij48ZyBjbGlwLXBhdGg9InVybCgjYSkiPjxwYXRoIGZpbGw9IiMwMEFEOTIiIGZpbGwtcnVsZT0iZXZlbm9kZCIgZD0iTTEzLjgwNSA1LjAyOWMuMjYuMjYuMjYuNjgyIDAgLjk0Mkw4LjQ3IDExLjMwNWEuNjY3LjY2NyAwIDAgMS0uOTQyIDBMMi4xOTUgNS45N2EuNjY3LjY2NyAwIDEgMSAuOTQzLS45NDJMOCA5Ljg5bDQuODYyLTQuODYyYy4yNi0uMjYuNjgyLS4yNi45NDMgMFoiIGNsaXAtcnVsZT0iZXZlbm9kZCIvPjwvZz48ZGVmcz48Y2xpcFBhdGggaWQ9ImEiPjxwYXRoIGZpbGw9IiNmZmYiIGQ9Ik0wIDBoMTZ2MTZIMHoiLz48L2NsaXBQYXRoPjwvZGVmcz48L3N2Zz4=") 50% 3px / contain no-repeat;
  display: inline-block;
}
/* image */
.c-dx-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  padding-top: 16px;
  padding-bottom: 32px;
  @media screen and (max-width: 899px) {
    width: 100%;
  }
}
.c-dx-image--md {
  max-width: 900px;
}
/* title lv2 */
.c-dx-title--lv2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 52px;
  background: var(--blue_60);
  border-radius: 5px;
  transform: skewX(-18deg);
  margin-bottom: 32px;
  @media screen and (max-width: 899px) {
    padding: 16px;
  }
  span {
    color: var(--color-white);
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    transform: skewX(18deg);
    @media screen and (max-width: 899px) {
      font-size: 18px;
      line-height: 1.2;
    }
  }
}
/* title lv3 */
.c-dx-title--lv3 {
  margin-top: 0;
  margin-bottom: 24px;
  span {
    font-size: 28px;
    line-height: 1.5;
    font-weight: 700;
    display: inline;
    background: linear-gradient(transparent 70%, var(--blue_30) 70%);
    @media screen and (max-width: 899px) {
      font-size: 22px;
    }
  }
}
/* lead text */
.c-dx-lead {
  font-size: 30px;
  line-height: 1.8;
  margin-top: 0;
  margin-bottom: 24px;
  @media screen and (max-width: 899px) {
    font-size: 22px;
  }
}
/* body text */
.c-dx-text {
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
  padding-bottom: 16px;
  font-weight: 400;
}
.c-dx-text--em {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 700;
  margin: 0;
}
/* 言語別のスタイル */
html[lang="en"] .c-dx-page-header__title {
  @media screen and (min-width: 900px) {
    font-size: 35px;
  }
}
html[lang="en"] .c-dx-lead {
  line-height: 1.5;
}
/* ============================
   top
   ============================ */
/* top h2 heading */
.dx-top-heading--lv2 {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 16px;
  font-size: 28px;
  line-height: 1.5;
  position: relative;
  font-weight: 400;
  @media screen and (max-width: 899px) {
    font-size: 24px;
  }
}
.dx-top-heading--lv2::after {
  content: "";
  position: absolute;
  inset-block-end: 0;
  inset-inline: 0;
  width: 120px;
  height: 2px;
  background-color: var(--green_100);
  margin: 0 auto;
}
/* hero */
.dx-top-hero {
  height: calc(100vh - 178px);
  display: flex;
  position: relative;
  overflow: hidden;
  @media screen and (max-width: 899px) {
    flex-direction: column;
    height: auto;
  }
}
.dx-top-hero__text-area {
  width: 42%;
  height: 100%;
  z-index: 10;
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  @media screen and (max-width: 899px) {
    width: 100%;
    padding-block: 39px;
    align-items: center;
  }
}
.dx-top-hero__text-area-inner {
  display: flex;
  flex-direction: column;
  margin-top: -50px;
  padding-inline: 80px 20px;
  @media screen and (max-width: 899px) {
    margin-top: 0;
    padding-inline: 0;
    align-items: center;
  }
}
html[lang="en"] .dx-top-hero__text-area-inner {
  @media screen and (max-width: 899px) {
    align-items: flex-start;
  }
}
.dx-top-hero__title {
  max-width: 500px;
  width: 100%;
  margin-bottom: 32px;
  img {
    width: 100%;
    height: auto;
  }
  @media screen and (max-width: 899px) {
    max-width: 250px;
    text-align: center;
    margin-bottom: 16px;
  }
}
html[lang="en"] .dx-top-hero__title {
  max-width: 420px;
}
.dx-top-hero__lead {
  font-size: clamp(18px, 2.2vw, 32px);
  line-height: 1.8;
  letter-spacing: 6.4px;
  margin: 0;
  padding-left: 8px;
  background: linear-gradient(to right, var(--color-black), #16a48a, #2617a5, var(--color-black));
  background-size: 200% auto;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  animation: shine 5s ease-in-out infinite alternate;
  @media screen and (max-width: 899px) {
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
  }
}
html[lang="en"] .dx-top-hero__lead {
  line-height: 1.5;
  font-size: clamp(16px, 2vw, 24px);
  letter-spacing: 0.72px;
}
.dx-top-hero__images {
  width: 58%;
  height: 100%;
  position: relative;
  z-index: 5;
  background-color: var(--color-white);
  overflow: hidden;
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
  @media screen and (max-width: 899px) {
    clip-path: none;
    width: 100%;
    position: relative;
    aspect-ratio: 1 / 1;
  }
  img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top left;
       object-position: top left;
    clip-path: polygon(-40% -10%, -20% -10%, -50% 110%, -70% 110%);
    transition:
      clip-path 1.5s cubic-bezier(0.76, 0, 0.24, 1),
      transform 1.5s cubic-bezier(0.76, 0, 0.24, 1);
    @media screen and (max-width: 899px) {
      transition:
        clip-path 1s cubic-bezier(0.76, 0, 0.24, 1),
        transform 1s cubic-bezier(0.76, 0, 0.24, 1);
    }
  }
  img:is(.is-active) {
    clip-path: polygon(-10% -10%, 120% -10%, 100% 110%, -10% 110%);
  }
}
/* animations */
@keyframes shine {
  to {
    background-position: 200% center;
  }
}
/* lead */
#DXLeadSection {
  --lead-blur: 0px;
  --lead-text-y: 24vh;
  --lead-text-opacity: 0.15;
}
.dx-top-lead {
  height: 150vh;
  position: relative;
}
.dx-top-lead__inner {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: clip;
  isolation: isolate;
  background: #09090b;
}
.dx-top-lead__media {
  position: absolute;
  inset: 0;
  background: url("../image/DX_top_lead.jpg") 28% / cover no-repeat;
  filter: blur(var(--lead-blur));
}
.dx-top-lead__media::after {
  content: "";
  background-color: #0054e4;
  opacity: 0.3;
  position: absolute;
  inset: 0;
  mix-blend-mode: multiply;
  z-index: 0;
}
.dx-top-lead__text-area {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: min(90%, 860px);
  text-align: center;
  transform: translate(-50%, calc(-50% + var(--lead-text-y)));
  opacity: var(--lead-text-opacity);
  will-change: opacity;
  pointer-events: none;
  overflow: hidden;
}
.dx-top-lead__text {
  font-size: 20px;
  line-height: 2.4;
  color: var(--color-white);
  text-align: center;
  margin-block: 0;
  @media screen and (max-width: 899px) {
    font-size: min(16px, 4.26vw);
    line-height: 2;
  }
}
/* section */
.dx-top-section {
  background-color: var(--blue_50);
  padding-block: 96px;
}
.dx-top-section__items {
  display: flex;
  flex-direction: column;
  gap: 120px;
  @media screen and (max-width: 899px) {
    gap: 96px;
  }
}
.dx-top-section__item {
  display: flex;
  gap: 48px;
  align-items: center;
  @media screen and (max-width: 899px) {
    flex-direction: column;
    gap: 32px;
  }
}
.dx-top-section__item-image {
  width: 50%;
  @media screen and (max-width: 899px) {
    width: 100%;
  }
  img {
    border-radius: 10px;
    width: 100%;
  }
}
.dx-top-section__item-textarea {
  width: 50%;
  @media screen and (max-width: 899px) {
    width: 100%;
  }
}
.dx-top-section__item-textinner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dx-top-section__item-title {
  font-size: 34px;
  line-height: 1.5;
  font-weight: 400;
  margin: 0;
  @media screen and (max-width: 899px) {
    font-size: 28px;
  }
}
.dx-top-section__item-text {
  font-size: 20px;
  line-height: 1.8;
  margin: 0;
  @media screen and (max-width: 899px) {
    font-size: 18px;
  }
}
.dx-top-section__item-text--sm {
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
  padding-bottom: 32px;
  @media screen and (max-width: 899px) {
    font-size: 14px;
    padding-bottom: 16px;
  }
}
.dx-top-section__item:first-child .dx-top-section__item-text--sm {
  @media screen and (max-width: 899px) {
    padding-bottom: 32px;
  }
}
.dx-top-section__item-text--em {
  font-size: 20px;
  line-height: 1.8;
  font-weight: 700;
}
.dx-top-section__item-button {
  width: -moz-fit-content;
  width: fit-content;
}
/* ============================
   message
   ============================ */
.dx-message-header {
  background: linear-gradient(to right, var(--blue_10), var(--blue_20));
  height: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  margin-bottom: 96px;
  @media screen and (max-width: 899px) {
    height: 211px;
  }
}
.dx-message__title {
  font-size: 38px;
  line-height: 1.5;
  font-weight: 400;
  @media screen and (max-width: 899px) {
    font-size: 32px;
  }
}
.dx-message-intro__container {
  display: flex;
  gap: 48px;
  padding-bottom: 24px;
  @media screen and (max-width: 899px) {
    gap: 16px;
    flex-direction: column;
  }
}
.dx-message-intro__textarea,
.dx-message-intro__imagearea {
  width: 50%;
  @media screen and (max-width: 899px) {
    width: 100%;
  }
}
.dx-message-intro__text {
  font-size: 24px;
  line-height: 1.8;
  margin-top: 0;
  margin-bottom: 16px;
  @media screen and (max-width: 899px) {
    font-size: 22px;
  }
}
.dx-message-intro__text--sm {
  font-size: 14px;
}
.dx-message-intro__text--em {
  font-size: 20px;
  line-height: 1.8;
  font-weight: 700;
}
.dx-message-intro__text--md {
  line-height: 1.5;
}
.dx-message-intro__imagearea img {
  border-radius: 15px;
  width: 100%;
}
.dx-message-body__container {
  padding-bottom: 80px;
  @media screen and (max-width: 899px) {
    padding-bottom: 64px;
  }
}
.dx-message-body__list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.dx-message-body__list + .c-dx-text {
  padding-top: 16px;
}
/* 言語別のスタイル */
html[lang="en"] .dx-message__title {
  @media screen and (min-width: 900px) {
    font-size: 35px;
  }
}
html[lang="en"] .dx-message-intro__text {
  line-height: 1.5;
}
/* ============================
   vision
   ============================ */
/* info card list */
.dx-vision-group-policy .c-dx-image {
  padding-bottom: 96px;
}
.dx-vision-policy {
  padding-bottom: 160px;
  @media screen and (max-width: 899px) {
    padding-bottom: 96px;
  }
}
.dx-vision-policy__info-card-items {
  display: grid;
  gap: 24px;
  margin-bottom: 64px;
  margin-top: 0;
}
.dx-vision-policy__info-card-items--first {
  margin-top: 16px;
  margin-bottom: 96px;
}
.dx-vision-policy__info-card-item {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 12px;
  min-block-size: 90px;
  @media screen and (max-width: 899px) {
    grid-template-columns: 1fr;
  }
}
.dx-vision-policy__info-card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  background: var(--color-bg_thema);
  border-radius: 10px;
  display: grid;
  place-items: center;
  padding-left: 16px;
  padding-right: 16px;
  text-align: center;
  @media screen and (max-width: 899px) {
    font-size: 16px;
    padding: 8px 16px;
  }
}
.dx-vision-policy__info-card-detail {
  font-size: 16px;
  line-height: 1.8;
  border: 2px solid var(--blue_30);
  border-radius: 10px;
  display: grid;
  align-items: center;
  margin-left: 0;
  padding: 24px;
  ul {
    padding-left: 24px;
    @media screen and (max-width: 899px) {
      padding-left: 20px;
    }
    li + li {
      padding-top: 8px;
    }
  }
  p {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 400;
  }
  @media screen and (max-width: 899px) {
    padding: 24px 16px;
  }
}
.dx-vision-policy .dx-vision-policy__plan {
  width: 100%;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-top: 16px;
  @media screen and (max-width: 899px) {
    grid-template-columns: 1fr;
  }
}
.dx-vision-policy .dx-vision-struct__pki-card {
  padding: 16px 0 64px;
}
.dx-vision-policy .dx-vision-struct__pki-card .c-dx-card__item {
  grid-row: span 2;
  padding: 24px 24px 48px;
  align-items: end;
  @media screen and (max-width: 899px) {
    padding: 24px 16px;
  }
}
html[lang="en"] .dx-vision-policy .dx-vision-struct__pki-card .c-dx-card__item {
  padding: 24px 24px 24px;
}
.dx-vision-policy .dx-vision-struct__pki-card .dx-vision-struct__card-title {
  font-size: clamp(12px, 1.25vw, 18px);
  line-height: 1.8;
  font-weight: 700;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  background: var(--color-bg_thema);
  min-height: 64px;
  padding: 8px 4px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  margin: 0;
  align-items: center;
  text-align: center;
  @media screen and (max-width: 899px) {
    font-size: 16px;
  }
}
.dx-vision-policy .dx-vision-struct__pki-card .dx-vision-struct__card-detail {
  margin: 0;
  text-align: center;
  @media screen and (max-width: 899px) {
    font-size: 16px;
  }
  & .sm {
    font-size: clamp(12px, 1.1vw, 16px);
    line-height: 1.8;
    @media screen and (max-width: 899px) {
      font-size: 16px;
    }
  }
  & .lg-b {
    font-size: clamp(24px, 2.9vw, 46px);
    font-weight: 700;
    @media screen and (max-width: 899px) {
      font-size: 46px;
    }
  }
  html[lang="en"] & .lg-b {
    font-size: clamp(24px, 2.9vw, 32px);
  }
  & .md-b {
    font-size: clamp(20px, 2.5vw, 38px);
    line-height: 1;
    font-weight: 700;
    @media screen and (max-width: 899px) {
      font-size: 38px;
    }
  }
  & .sm-b {
    font-size: clamp(12px, 1.1vw, 16px);
    font-weight: 700;
    @media screen and (max-width: 899px) {
      font-size: 16px;
    }
  }
}
.dx-vision-policy .dx-vision-policy__plan-item {
  border: 2px solid var(--blue_30);
  padding: 24px;
  border-radius: 10px;
  font-weight: 700;
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  gap: 16px;
  @media screen and (max-width: 899px) {
    padding: 24px 16px;
  }
}
.dx-vision-policy .dx-vision-policy__plan-item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}
.dx-vision-policy .dx-vision-policy__plan-item-title {
  background: var(--color-bg_thema);
  border-radius: 10px;
  margin-top: 0;
  margin-bottom: 0;
  padding: 8px 16px;
  font-size: 18px;
  @media screen and (max-width: 899px) {
    font-size: 16px;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.dx-vision-policy .dx-vision-policy__plan-item-list {
  margin-block: 0;
  padding-left: 20px;
  li + li {
    padding-top: 8px;
  }
}
/* ============================
   development-foundation
   ============================ */
html[lang="en"] .c-dx-page-header__title.dx-df-title {
  font-size: clamp(28px, 2.64vw, 35px);
}
.dx-df-desc {
  padding-bottom: 96px;
}
.dx-df-cycle .dx-df-image--last {
  padding-bottom: 112px;
}
@media screen and (max-width: 899px) {
  .dx-df-cycle .c-dx-card--4col {
    gap: 24px;
  }
}
.dx-df-platform .c-dx-image {
  padding-bottom: 112px;
}
.dx-df-system .dx-df-linkcard,
.dx-df-system .dx-df-linkcard:visited {
  color: inherit;
  text-decoration: none;
}
.dx-df-system .dx-df-linkcard {
  display: flex;
  justify-content: flex-start;
  position: relative;
  max-width: 876px;
  padding: 24px 0 24px 24px;
  margin: 0 auto;
  border: 1px solid var(--gray_blue);
  border-radius: 10px;
  margin-bottom: 160px;
  @media screen and (max-width: 899px) {
    align-items: flex-start;
    padding-left: 16px;
    gap: 16px;
    margin-bottom: 96px;
  }
}
.dx-df-system .dx-df-linkcard__image {
  overflow: hidden;
  width: 176px;
  flex-shrink: 0;
  @media screen and (max-width: 899px) {
    max-width: 80px;
    width: auto;
  }
}
.dx-df-system .dx-df-linkcard img {
  width: 100%;
  transition: transform 0.3s;
}
.dx-df-system .dx-df-linkcard:hover img {
  transform: scale(1.1);
}
.dx-df-system .dx-df-linkcard__textarea {
  padding: 24px 60px 24px 24px;
  width: 100%;
  box-sizing: border-box;
  @media screen and (max-width: 899px) {
    padding: 0 50px 0 0;
  }
}
.dx-df-system .dx-df-linkcard__textarea::after {
  content: "";
  width: 32px;
  height: 32px;
  background-image: url("../image/DX_ic_df_external.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 4px;
  display: block;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  @media screen and (max-width: 899px) {
    right: 14px;
  }
  @media screen and (max-width: 320px) {
    width: 24px;
    height: 24px;
  }
}
.dx-df-system .dx-df-linkcard__title {
  font-size: 20px;
  line-height: 1.5;
  margin: 0;
  padding-bottom: 16px;
  @media screen and (max-width: 899px) {
    font-size: 18px;
  }
}
.dx-df-system .dx-df-linkcard:hover .dx-df-linkcard__title {
  color: var(--blue_100);
}
.dx-df-system .dx-df-linkcard__text {
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}
/* ============================
   case
   ============================ */
.dx-case-contents .dx-case-content--bg-blue {
  background-color: var(--blue_50);
}
.dx-case-contents .dx-case-content {
  padding-top: 48px;
  padding-bottom: 96px;
  @media screen and (max-width: 899px) {
    padding-bottom: 64px;
  }
}
.dx-case-contents #dx-anchor-case1 .dx-case-content {
  @media screen and (max-width: 899px) {
    padding-bottom: 64px;
  }
}
.dx-case-contents #dx-anchor-case4 .dx-case-content {
  padding-bottom: 160px;
  @media screen and (max-width: 899px) {
    padding-bottom: 96px;
  }
}
.dx-case-contents .dx-case-item__titlearea {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-bottom: 24px;
  @media screen and (max-width: 899px) {
    flex-direction: column;
    gap: 24px;
    padding-bottom: 48px;
  }
}
.dx-case-contents .dx-case-item__title--lv2 {
  width: -moz-fit-content;
  width: fit-content;
}
.dx-case-contents .dx-case-item__title {
  font-size: 24px;
  font-weight: 400;
  padding-bottom: 24px;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  @media screen and (max-width: 899px) {
    font-size: 20px;
    padding-bottom: 8px;
  }
}
.dx-case-contents .c-dx-title--lv3 {
  display: block;
}
.dx-case-contents .dx-case-item__textarea {
  width: 50%;
  @media screen and (max-width: 899px) {
    width: 100%;
  }
}
.dx-case-contents .dx-case-item__number {
  font-family: "Montserrat", sans-serif;
  font-size: 120px;
  font-weight: 200;
  @media screen and (max-width: 899px) {
    font-size: 90px;
  }
}
.dx-case-contents .dx-case-item__image {
  width: 50%;
  @media screen and (max-width: 899px) {
    width: 100%;
  }
  img {
    width: 100%;
    display: block;
    border-radius: 10px;
  }
}
.dx-case-contents .dx-case-item__text--sm {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  padding-bottom: 16px;
  display: block;
}
.dx-case-contents .dx-case-item__point {
  padding-top: 32px;
  padding-bottom: 16px;
}
.dx-case-contents .dx-case-item__inner {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px;
  font-weight: 700;
  line-height: 1.8;
  border-radius: 10px;
  border: 2px solid var(--blue_30);
  background-color: var(--color-white);
  @media screen and (max-width: 899px) {
    flex-direction: column;
    gap: 16px;
    padding: 24px 16px;
  }
}
.dx-case-contents .dx-case-item__point-title {
  line-height: 1.8;
  border-radius: 10px;
  padding: 8px 16px;
  background: var(--color-bg_thema);
  margin: 0;
  text-align: center;
  min-width: 90px;
}
html[lang="en"] .dx-case-contents .dx-case-item__point-title {
  min-width: 100px;
}
.dx-case-contents .dx-case-item__point-list {
  font-size: 16px;
  padding-left: 20px;
  margin: 0;
  @media screen and (max-width: 899px) {
    padding-left: 20px;
  }
}
.dx-case-contents .dx-case-item__point-list li + li {
  padding-top: 16px;
}
.dx-case-contents .dx-case-item__point-image {
  display: block;
  width: 100%;
  padding-top: 32px;
}
.dx-case-contents .dx-case-item__point-image + .dx-case-item__point-image {
  padding-top: 24px;
  @media screen and (max-width: 899px) {
    padding-top: 16px;
  }
}
.dx-case-contents .dx-case-item__button {
  padding-top: 32px;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
}
