#dx {
  text-align: initial;
}
#dx img {
  display: block;
  margin: 0 auto;
  width: auto;
  max-width: 100%;
  height: auto;
}
#dx h2,
#dx h3,
#dx h4,
#dx p,
#dx li {
  font-size: initial;
  margin: initial;
  padding: initial;
  line-height: initial;
  letter-spacing: initial;
  background-color: initial;
  border: initial;
  font-weight: initial;
  text-align: initial;
}
#dx h2 {
  font-size: 36px;
}
@media (max-width: 768px) {
  #dx h2 {
    font-size: 24px;
  }
}
#dx h3 {
  font-size: 30px;
  font-weight: bold;
}
@media (max-width: 768px) {
  #dx h3 {
    font-size: 22px;
  }
}
#dx p {
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 576px) {
  #dx p {
    font-size: 16px;
    margin-top: 5px;
  }
}
#dx li {
  list-style: none;
}
#dx a {
  text-decoration: none;
}
#dx article {
  margin: 20px auto;
}
@media (max-width: 768px) {
  #dx article {
    margin: 15px auto;
  }
}
@media (max-width: 576px) {
  #dx article {
    margin: 10px auto;
  }
}
#dx .wrapper {
  width: 90%;
  margin: 0 auto;
  max-width: 1140px;
}
@media (max-width: 768px) {
  #dx .wrapper {
    width: 95%;
    margin: 0 auto;
  }
}
#dx .flex-container {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  #dx .flex-container {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  #dx .flex-reverse {
    flex-direction: column-reverse;
  }
}
#dx .con {
  padding: 80px 0;
}
@media (max-width: 768px) {
  #dx .con {
    padding: 40px 0;
  }
}
#dx .box-left {
  width: 80%;
  padding: 40px;
  margin: 40px auto 40px 0;
  border-radius: 0 20px 20px 0;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 576px) {
  #dx .box-left {
    width: 90%;
    padding: 10px;
  }
}
#dx .box-right {
  width: 80%;
  padding: 40px;
  margin: 40px 0 40px auto;
  border-radius: 20px 0 0 20px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 576px) {
  #dx .box-right {
    width: 90%;
    padding: 10px;
  }
}
#dx img.pc {
  display: block;
}
@media (max-width: 576px) {
  #dx img.pc {
    display: none;
  }
}
#dx img.sp {
  display: none;
}
@media (max-width: 576px) {
  #dx img.sp {
    display: block;
    margin: 0 0 10px 0;
  }
}
#dx .inn {
  position: relative;
  z-index: 1;
}
#dx .inn .parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
#dx .inn .parallax-bg .bg {
  background-image: url("../images/dx/bg-dot.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100vh;
  position: sticky;
  top: 0;
  z-index: -1;
}
#dx .scroll-wrapper {
  display: flex;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  padding: 20px 0 100px;
  position: relative;
}
#dx .scroll-wrapper .scroll-container {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: scroll 40s linear infinite;
}
#dx .scroll-wrapper .scroll-container img {
  margin: 0 40px;
  width: auto;
  max-width: initial;
  height: 200px;
}
@media (max-width: 768px) {
  #dx .scroll-wrapper .scroll-container img {
    height: 150px;
    margin: 0 30px;
  }
}
@media (max-width: 576px) {
  #dx .scroll-wrapper .scroll-container img {
    height: 100px;
    margin: 0 20px;
  }
}
#dx .scroll-wrapper .floating-circle {
  position: absolute;
  width: 10%;
  height: 10%;
  background-image: url(../images/dx/hoshi.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.1s linear;
}
#dx .scroll-wrapper .circle1 {
  width: 15%;
  height: 15%;
  top: 10%;
  left: 0;
}
#dx .scroll-wrapper .circle2 {
  width: 20%;
  height: 20%;
  top: 40%;
  right: 0;
}
#dx .scroll-wrapper .circle3 {
  width: 30%;
  height: 30%;
  bottom: 0;
  left: 45%;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
#dx .top .top-image {
  aspect-ratio: 37/15;
  background-image: url(../images/dx/DX-top.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  max-width: 1920px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  #dx .top .top-image {
    aspect-ratio: 1/1;
    background-image: url(../images/dx/DX-top-sp.png);
  }
}
#dx .top-bottom {
  padding: 40px 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0 50%, #2E6FA1 50% 100%);
}
#dx .top-bottom .innner {
  background-image: url(../images/dx/top-bottom-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  padding: 40px;
}
@media (max-width: 576px) {
  #dx .top-bottom .innner {
    padding: 40px 20px;
  }
}
#dx .top-bottom .innner .flex-container {
  gap: 20px;
  align-items: center;
}
#dx .top-bottom .innner .flex-container .left {
  flex: 2;
}
#dx .top-bottom .innner .flex-container .left h3 {
  color: #109DE1;
}
#dx .top-bottom .innner .flex-container .right {
  flex: 1;
}
#dx .nayami {
  background-color: #2E6FA1;
}
#dx .nayami h2 img {
  max-width: 80%;
  margin: 0 0 10px 0;
}
#dx .nayami p {
  color: #fff;
}
#dx .nayami .nayami-con {
  background-color: #8D8D8D;
  padding: 60px 40px;
}
@media (max-width: 768px) {
  #dx .nayami .nayami-con {
    padding: 40px 20px;
  }
}
@media (max-width: 576px) {
  #dx .nayami .nayami-con {
    padding: 20px;
  }
}
#dx .nayami .nayami-con h4 {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  padding: 0 40px;
}
@media (max-width: 768px) {
  #dx .nayami .nayami-con h4 {
    padding: 0;
  }
}
@media (max-width: 576px) {
  #dx .nayami .nayami-con h4 {
    font-size: 20px;
    margin: 0 auto 10px 0;
  }
}
#dx .nayami .nayami-con h4 br {
  display: none;
}
@media (max-width: 576px) {
  #dx .nayami .nayami-con h4 br {
    display: block;
  }
}
#dx .nayami .nayami-con h4::before {
  content: "";
  display: inline-block;
  background-image: url(../images/dx/nayami1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 40px;
  height: 40px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  #dx .nayami .nayami-con h4::before {
    display: none;
  }
}
#dx .nayami .nayami-con h4::after {
  content: "";
  display: inline-block;
  background-image: url(../images/dx/yayami2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 40px;
  height: 40px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  #dx .nayami .nayami-con h4::after {
    display: none;
  }
}
#dx .nayami .nayami-con ul li {
  color: #fff;
  list-style: circle;
}
#dx .pbx .pbx-container {
  background-color: #F0F5FF;
}
#dx .pbx .pbx-container .flex-container {
  gap: 20px;
  align-items: center;
}
#dx .pbx .pbx-container.box-left img {
  max-width: 70%;
}
#dx .pbx .pbx-container.box-right img {
  max-width: 75%;
}
@media (max-width: 576px) {
  #dx .pbx .pbx-container.box-right img {
    max-width: 100%;
  }
}
#dx .pbx .pbx-bottom .flex-container {
  gap: 20px;
  align-items: center;
  margin: 40px auto;
}
#dx .pbx .pbx-bottom .flex-container .left,
#dx .pbx .pbx-bottom .flex-container .right {
  flex: 1;
}
#dx .pbx .pbx-bottom .flex-container h4 {
  font-size: 20px;
  font-weight: bold;
}
#dx .akuvox .akuvox-container {
  background-color: #FFEEF5;
}
#dx .akuvox .akuvox-container .flex-container {
  gap: 20px;
  align-items: center;
}
#dx .akuvox .akuvox-container.box-left img {
  max-width: 75%;
}
@media (max-width: 576px) {
  #dx .akuvox .akuvox-container.box-left img {
    max-width: 100%;
  }
}
#dx .akuvox .akuvox-bottom .flex-container {
  gap: 20px;
  align-items: center;
  margin: 40px auto;
}
#dx .akuvox .akuvox-bottom .flex-container .left,
#dx .akuvox .akuvox-bottom .flex-container .right {
  flex: 1;
}
#dx .akuvox .akuvox-bottom .flex-container h4 {
  font-size: 20px;
  font-weight: bold;
}
#dx .renkei {
  padding-bottom: 0;
}
#dx .renkei .tri {
  height: 150px;
  background: #F9F2FF;
  border-top-left-radius: 100vw 100px;
  border-top-right-radius: 100vw 100px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  display: block;
}
@media (max-width: 768px) {
  #dx .renkei .tri {
    height: 60px;
    border-top-left-radius: 100vw 60px;
    border-top-right-radius: 100vw 60px;
  }
}
@media (max-width: 480px) {
  #dx .renkei .tri {
    height: 40px;
    border-top-left-radius: 100vw 40px;
    border-top-right-radius: 100vw 40px;
  }
}
#dx .renkei .renkei-main {
  background-color: #F9F2FF;
  padding: 40px 0 80px;
}
#dx .renkei .renkei-main article {
  background-color: #fff;
  padding: 40px;
}
@media (max-width: 576px) {
  #dx .renkei .renkei-main article {
    padding: 20px;
  }
}
#dx .renkei .renkei-main article p {
  margin: 0 0 10px 0;
}
#dx .timeline {
  background: linear-gradient(140deg, #100129 0%, #463464 100%);
}
#dx .timeline h2 {
  text-align: center;
  color: #fff;
}
#dx .timeline .history {
  position: relative;
  margin: 0 auto;
  padding: 0 15px;
  text-align: left;
}
@media (min-width: 768px) {
  #dx .timeline .history {
    width: 1000px;
  }
}
#dx .timeline .history:before {
  content: "";
  width: 1px;
  height: 100%;
  background: orange;
  position: absolute;
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  #dx .timeline .history:before {
    left: 50%;
  }
}
#dx .timeline .history .history__item {
  position: relative;
  display: flex;
  padding: 0 0 35px 20px;
  margin: 60px 0;
}
@media (min-width: 768px) {
  #dx .timeline .history .history__item {
    padding: 0;
  }
}
@media (min-width: 768px) {
  #dx .timeline .history .history__item:nth-of-type(2n) {
    justify-content: flex-end;
  }
}
#dx .timeline .history .history__item:before {
  content: "";
  width: 8px;
  height: 8px;
  background: orange;
  position: absolute;
  border-radius: 50%;
  left: 0;
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  #dx .timeline .history .history__item:before {
    left: 50%;
    top: 0;
    width: 10px;
    height: 10px;
  }
}
#dx .timeline .history .history__item:last-child {
  padding-bottom: 15px;
}
@media (min-width: 768px) {
  #dx .timeline .history .history__item:last-child {
    padding-bottom: 0;
  }
}
#dx .timeline .history .history__item:last-child:after {
  content: "";
  width: 6px;
  height: 6px;
  background: none;
  position: absolute;
  transform: translateX(-50%) rotate(-45deg);
  border-left: 1px solid orange;
  border-bottom: 1px solid orange;
  bottom: 0;
  left: 0;
}
@media (min-width: 768px) {
  #dx .timeline .history .history__item:last-child:after {
    left: 50%;
    width: 8px;
    height: 8px;
  }
}
@media (min-width: 768px) {
  #dx .timeline .history .history__inner {
    flex-basis: 45%;
  }
}
#dx .timeline .history .history__time p {
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  #dx .timeline .history .history__time p {
    font-size: 50px;
  }
}
#dx .timeline .history .history__text {
  padding-top: 10px;
  letter-spacing: 0.05em;
  color: #fff;
}
@media (min-width: 768px) {
  #dx .timeline .history .history__text {
    margin-top: 15px;
  }
}
#dx .timeline .timeline__footer .flex-container {
  gap: 20px;
}
#dx .timeline .timeline__footer .flex-container .left {
  flex: 1;
}
#dx .timeline .timeline__footer .flex-container .left h4 {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
}
@media (max-width: 576px) {
  #dx .timeline .timeline__footer .flex-container .left h4 {
    font-size: 24px;
  }
}
#dx .timeline .timeline__footer .flex-container .left p {
  color: #fff;
}
#dx .timeline .timeline__footer .flex-container .right {
  flex: 1;
}/*# sourceMappingURL=dx.css.map */