@charset "UTF-8";
body {
  background-color: #ffffff;
}

.dx {
  position: relative;
  margin-top: 90px;
  overflow: hidden;
}
.dx .section-title {
  font-size: clamp(48px, 5.28vw, 76px);
  font-weight: 700;
  color: #000;
  text-align: center;
  letter-spacing: -0.05em;
}
.dx .section-title.-left {
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .dx .section-title.-left {
    text-align: center;
  }
}
.dx .section-titleJp {
  font-size: clamp(14px, 1.11vw, 16px);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #000;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .dx .section-titleJp {
    margin-top: 5px;
  }
}
.dx .section-titleJp.-left {
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .dx .section-titleJp.-left {
    text-align: center;
  }
}
.dx .toggle-button {
  position: relative;
  max-width: 1200px;
  background-color: #f8f8f8;
  padding: 65px 0 0;
  margin: 0 auto;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .dx .toggle-button {
    padding: 40px 0 0;
  }
}
.dx .toggle-button:hover::after {
  top: 20px;
}
.dx .toggle-button::after {
  position: absolute;
  content: "";
  background-image: url(../../img/page/dx/dx-arrow.svg);
  background-size: cover;
  width: 32px;
  height: 32px;
  top: 12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 768px) {
  .dx .toggle-button::after {
    top: 10px;
    width: 20px;
    height: 20px;
  }
}
.dx .toggle-button.-is-visible::after {
  top: 22px;
  background-image: url(../../img/page/dx/dx-arrow2.svg);
}
@media only screen and (max-width: 768px) {
  .dx .toggle-button.-is-visible::after {
    top: 12px;
  }
}
.dx .toggle-button.-is-visible:hover::after {
  top: 10px;
}

.dx::before {
  content: "";
  position: absolute;
  background-image: url(../../img/page/dx/dx_mv.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 970px;
  width: 980px;
  position: fixed;
  top: 90px;
  right: -104px;
}
@media only screen and (max-width: 768px) {
  .dx::before {
    width: 97%;
    height: auto;
    aspect-ratio: 980/970;
    right: -44px;
    top: 144px;
  }
}

.dx.is-bottom-fixed::before {
  top: auto;
  bottom: -100px;
}
@media only screen and (max-width: 768px) {
  .dx.is-bottom-fixed::before {
    bottom: 0;
    right: -39px;
  }
}

.dx-inner {
  position: relative;
  width: 100%;
  max-width: 1440px;
  padding-left: 60px;
  padding-right: 60px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .dx-inner {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.dx-mv {
  position: relative;
  padding: 193px 0 140px;
  z-index: 10;
}
@media only screen and (max-width: 768px) {
  .dx-mv {
    padding: 60px 0 80px;
  }
}

.dx-title {
  font-size: clamp(39px, 4.72vw, 68px);
  font-weight: 800;
  letter-spacing: 0.025em;
  line-height: 1.2352941176;
  color: #000;
}
@media only screen and (max-width: 768px) {
  .dx-title {
    line-height: 1.5384615385;
    letter-spacing: 0;
  }
}

.dx-subtitle {
  font-size: clamp(24px, 2.22vw, 32px);
  font-weight: 700;
  line-height: 1.5625;
  margin-top: 15px;
}
@media only screen and (max-width: 768px) {
  .dx-subtitle {
    line-height: 1.3333333333;
    margin-top: 20px;
  }
}

.dx-mvText {
  font-size: clamp(16px, 1.25vw, 18px);
  letter-spacing: 0.1em;
  line-height: 2;
  margin-top: 50px;
}
@media only screen and (max-width: 768px) {
  .dx-mvText {
    font-size: 16px;
    line-height: 2.25;
    margin-top: 226px;
  }
}

.dx-message {
  position: relative;
  z-index: 10;
}

.dx-messageWrap {
  background-image: url(../../img/page/dx/dx_message_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  -webkit-box-shadow: 6px 6px 12px rgba(0, 92, 162, 0.16);
          box-shadow: 6px 6px 12px rgba(0, 92, 162, 0.16);
  padding: 60px 0 70px;
  position: relative;
  z-index: 10;
}
@media only screen and (max-width: 768px) {
  .dx-messageWrap {
    background-position: center;
    padding-top: 0;
    padding-bottom: 60px;
    border-top-left-radius: 45px;
    border-top-right-radius: 45px;
  }
}
.dx-messageWrap .message-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 6%;
     -moz-column-gap: 6%;
          column-gap: 6%;
}
@media only screen and (max-width: 768px) {
  .dx-messageWrap .message-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.dx-messageWrap .message-img {
  width: 45%;
  margin-top: 100px;
}
@media only screen and (max-width: 768px) {
  .dx-messageWrap .message-img {
    margin-top: 0;
    margin-bottom: 40px;
    width: 100%;
  }
}
.dx-messageWrap .message-img img {
  width: 100%;
}
.dx-messageWrap .message-textWrap {
  width: 44%;
}
@media only screen and (max-width: 768px) {
  .dx-messageWrap .message-textWrap {
    width: 100%;
  }
}
.dx-messageWrap .message-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  margin-top: 50px;
}
@media only screen and (max-width: 768px) {
  .dx-messageWrap .message-text {
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 40px;
  }
}
.dx-messageWrap .ceo-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-column-gap: 43px;
     -moz-column-gap: 43px;
          column-gap: 43px;
  margin-top: 46px;
}
@media only screen and (max-width: 768px) {
  .dx-messageWrap .ceo-wrap {
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 40px;
    -webkit-column-gap: 33px;
       -moz-column-gap: 33px;
            column-gap: 33px;
  }
}
.dx-messageWrap .ceo {
  font-size: 16px;
  letter-spacing: 0.2em;
  font-weight: 500;
}
.dx-messageWrap .ceo-name {
  width: 140px;
}
@media only screen and (max-width: 768px) {
  .dx-messageWrap .ceo-name {
    width: 145px;
  }
}

.dx-messageBottom {
  position: relative;
  background-color: #edf4f7;
  z-index: 5;
  padding: 160px 0 104px;
}
@media only screen and (max-width: 768px) {
  .dx-messageBottom {
    padding: 40px 0 80px;
  }
}

.dx-messageBottom::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #edf4f7;
  top: -487px;
}
@media only screen and (max-width: 768px) {
  .dx-messageBottom::before {
    height: calc(100% + 350px);
    top: calc(-100% - 350px);
  }
}

.messageBottom-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .messageBottom-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.messageBottom-box {
  width: 50%;
  color: #000;
}
@media only screen and (max-width: 768px) {
  .messageBottom-box {
    width: 100%;
  }
}

.messageBottom-box:nth-child(1) {
  border-right: solid 1px #bcbcbc;
  padding-right: 4.8%;
}
@media only screen and (max-width: 768px) {
  .messageBottom-box:nth-child(1) {
    padding-right: 0;
    padding-bottom: 40px;
    border-bottom: solid 1px #bcbcbc;
    border-right: none;
  }
}

.messageBottom-box:nth-child(2) {
  padding-left: 4.8%;
}
@media only screen and (max-width: 768px) {
  .messageBottom-box:nth-child(2) {
    padding-top: 40px;
    padding-left: 0;
  }
}

.messageBottom-head {
  font-size: clamp(48px, 5.28vw, 76px);
  font-weight: 700;
  text-align: center;
}

.messageBottom-subhead {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .messageBottom-subhead {
    margin-top: 5px;
  }
}

.messageBottom-text {
  font-size: clamp(20px, 2.22vw, 32px);
  font-weight: 800;
  text-align: center;
  line-height: 1.9375;
  margin-top: 50px;
}
@media only screen and (max-width: 768px) {
  .messageBottom-text {
    margin-top: 40px;
    line-height: 2.1;
  }
}
.messageBottom-text span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), to(#efef00));
  background: linear-gradient(transparent 50%, #efef00 100%);
}

.messageBottom-subtext {
  font-size: clamp(16px, 1.6667vw, 24px);
  font-weight: 700;
  line-height: 1.5833333333;
  text-align: center;
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  .messageBottom-subtext {
    line-height: 1.75;
    margin-top: 38px;
  }
}

@media only screen and (max-width: 768px) {
  .messageBottom-bg img {
    width: 100%;
  }
}

.dx-strategy {
  position: relative;
  z-index: 10;
  background-color: #fff;
  padding: 120px 0 164px;
}
@media only screen and (max-width: 768px) {
  .dx-strategy {
    padding: 80px 0;
  }
}
.dx-strategy .strategy-img {
  max-width: 1320px;
  margin: 120px auto 20px auto;
  overflow-x: scroll;
  overflow-y: hidden;
  -ms-overflow-style: none; /* IE, Edge 対応 */
  scrollbar-width: none; /* Firefox 対応 */
  padding: 0 60px 40px 60px;
}
.dx-strategy .strategy-img::-webkit-scrollbar {
  display: none;
}
@media only screen and (max-width: 768px) {
  .dx-strategy .strategy-img {
    margin: 40px 0 20px;
    padding: 0 12px 0;
    -ms-overflow-style: auto; /* IE, Edge */
    scrollbar-width: auto; /* Firefox */
  }
  .dx-strategy .strategy-img::-webkit-scrollbar {
    display: block; /* Chrome, Safari */
  }
}
@media only screen and (max-width: 768px) {
  .dx-strategy .strategy-img img {
    min-width: 769px;
  }
}
.dx-strategy .strategy-wrap {
  overflow: hidden;
  display: none;
}
.dx-strategy ul {
  max-width: 1200px;
  padding: 60px 0 41px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .dx-strategy ul {
    padding: 60px 0;
  }
}
.dx-strategy ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 5%;
     -moz-column-gap: 5%;
          column-gap: 5%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  .dx-strategy ul li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 60px;
  }
}
.dx-strategy ul li .strategy-itemImg {
  width: 37%;
}
@media only screen and (max-width: 768px) {
  .dx-strategy ul li .strategy-itemImg {
    width: 100%;
    max-width: 600px;
  }
}
@media only screen and (max-width: 768px) {
  .dx-strategy ul li .strategy-itemImg img {
    width: 100%;
  }
}
.dx-strategy ul li .strategy-itemText {
  width: 58%;
  line-height: 1.75;
  font-size: 16px;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .dx-strategy ul li .strategy-itemText {
    width: 100%;
    margin-top: 20px;
  }
}
.dx-strategy ul li:nth-child(1) {
  margin-top: 0;
}

.dx-roadmap {
  position: relative;
  z-index: 10;
  background-color: #f8f8f8;
  padding: 120px 0 0;
}
@media only screen and (max-width: 768px) {
  .dx-roadmap {
    padding-top: 80px;
  }
}
.dx-roadmap .roadmap-img {
  max-width: 1320px;
  margin: 120px auto 20px auto;
  padding: 0 60px 40px 60px;
  overflow-y: scroll;
  overflow-y: hidden;
  -ms-overflow-style: none; /* IE, Edge 対応 */
  scrollbar-width: none; /* Firefox 対応 */
}
.dx-roadmap .roadmap-img::-webkit-scrollbar {
  display: none;
}
@media only screen and (max-width: 768px) {
  .dx-roadmap .roadmap-img {
    margin: 40px 0 60px;
    padding: 0 12px 0 12px;
    -ms-overflow-style: auto; /* IE, Edge */
    scrollbar-width: auto; /* Firefox */
  }
  .dx-roadmap .roadmap-img::-webkit-scrollbar {
    display: block; /* Chrome, Safari */
  }
}
.dx-roadmap .roadmap-img img {
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .dx-roadmap .roadmap-img img {
    min-width: 769px;
  }
}
.dx-roadmap .roadmap-content {
  max-width: 1200px;
  margin: 0 auto;
}
.dx-roadmap .roadmap-wrap {
  overflow: hidden;
  display: none;
}
.dx-roadmap .roadmap-wrap ul {
  padding: 120px 0 93px;
}
@media only screen and (max-width: 768px) {
  .dx-roadmap .roadmap-wrap ul {
    padding: 0;
  }
}
.dx-roadmap .roadmap-wrap li {
  margin-top: 60px;
}
@media only screen and (max-width: 768px) {
  .dx-roadmap .roadmap-wrap li {
    margin-top: 40px;
  }
}
.dx-roadmap .roadmap-wrap li:nth-child(1) {
  margin-top: 0;
}
.dx-roadmap .roadmap-itemHead {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  padding-bottom: 14px;
  border-bottom: 1px solid #bcbcbc;
}
.dx-roadmap .roadmap-itemText {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  padding-top: 28px;
}
@media only screen and (max-width: 768px) {
  .dx-roadmap .roadmap-itemText {
    padding-top: 15px;
  }
}
.dx-roadmap .roadmap-bottom {
  margin-top: 120px;
  padding-bottom: 95px;
}
@media only screen and (max-width: 768px) {
  .dx-roadmap .roadmap-bottom {
    margin-top: 60px;
    padding-bottom: 40px;
  }
}
.dx-roadmap .roadmap-bottomImg {
  max-width: 770px;
  margin: 0 auto;
}
.dx-roadmap .roadmap-bottomImg img {
  width: 100%;
}
.dx-roadmap .roadmap-bottomHead {
  font-size: clamp(20px, 2.22vw, 32px);
  font-weight: 800;
  text-align: center;
  margin-top: 17px;
  padding: 27px 0;
  background-color: #ffffff;
  border-radius: 10px;
}
@media only screen and (max-width: 768px) {
  .dx-roadmap .roadmap-bottomHead {
    line-height: 2.1;
    margin-top: 6px;
    padding: 16px 0;
  }
}
.dx-roadmap .roadmap-bottomHead span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), to(#efef00));
  background: linear-gradient(transparent 50%, #efef00 100%);
}
.dx-roadmap .roadmap-bottomText {
  font-size: clamp(16px, 1.6667vw, 24px);
  font-weight: 700;
  text-align: center;
  margin-top: 30px;
}
@media only screen and (max-width: 768px) {
  .dx-roadmap .roadmap-bottomText {
    line-height: 1.75;
    margin-top: 12px;
  }
}

.dx-organization {
  position: relative;
  z-index: 10;
  background-color: #ffffff;
  padding: 183px 0 160px;
}
@media only screen and (max-width: 768px) {
  .dx-organization {
    padding: 80px 0;
  }
}
.dx-organization .dx-organizationFlex {
  max-width: 1440px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 5%;
}
@media only screen and (max-width: 768px) {
  .dx-organization .dx-organizationFlex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.dx-organization .organization-textWrap {
  max-width: 39%;
  padding-left: 60px;
}
@media only screen and (max-width: 768px) {
  .dx-organization .organization-textWrap {
    max-width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }
}
.dx-organization .organization-img {
  width: 56%;
}
@media only screen and (max-width: 768px) {
  .dx-organization .organization-img {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
    margin-top: 40px;
  }
}
.dx-organization .organization-text {
  margin-top: 50px;
  font-size: 16px;
  line-height: 1.75;
}
@media only screen and (max-width: 768px) {
  .dx-organization .organization-text {
    margin-top: 40px;
  }
}

.dx-structure {
  position: relative;
  background-color: #fff;
  z-index: 10;
  padding-bottom: 113px;
}
@media only screen and (max-width: 768px) {
  .dx-structure {
    padding-bottom: 40px;
  }
}
.dx-structure .dx-structureFlex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .dx-structure .dx-structureFlex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.dx-structure .structure-img {
  width: 56%;
  overflow-x: scroll;
  overflow-y: hidden;
  -ms-overflow-style: none; /* IE, Edge 対応 */
  scrollbar-width: none; /* Firefox 対応 */
}
.dx-structure .structure-img::-webkit-scrollbar {
  display: none;
}
@media only screen and (max-width: 768px) {
  .dx-structure .structure-img {
    width: 100%;
    padding-bottom: 40px;
    margin-top: 60px;
    -ms-overflow-style: auto; /* IE, Edge */
    scrollbar-width: auto; /* Firefox */
  }
  .dx-structure .structure-img::-webkit-scrollbar {
    display: block; /* Chrome, Safari */
  }
}
@media only screen and (max-width: 768px) {
  .dx-structure .structure-img img {
    min-width: 740px;
  }
}
.dx-structure .structure-textWrap {
  width: 36%;
}
@media only screen and (max-width: 768px) {
  .dx-structure .structure-textWrap {
    width: 100%;
  }
}
.dx-structure .structure-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  margin-top: 50px;
}
@media only screen and (max-width: 768px) {
  .dx-structure .structure-text {
    margin-top: 40px;
  }
}