/* import */
@import url(./common.css);
/* //import */

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

#Visual {
  width: 100%;
  /* max-width: 1920px; */
  /* max-width: var(--main-width); */
  min-height: 535px;
  position: relative;
  padding: 0 65px;
  background-color: #33a7ed;
  /* background-image: url(../images/visual_bg.png); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  justify-content: center;
}

#Visual h1 {
  color: #fff;
  text-align: center;
  font-size: 57.16px;
  font-weight: 300;
  line-height: 125%; /* 71.45px */
  position: relative;
  z-index: 10;
}

#Visual h1 strong {
  font-weight: 700;
}

#Visual p {
  color: #fff;
  text-align: center;
  font-size: 21px;
  font-weight: 400;
  line-height: 165%; /* 34.65px */
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}

#Visual p::before {
  content: "";
  width: 26.4px;
  height: 6.6px;
  display: block;
  background: #fff;
  margin: 10px 0;
}

#Visual div {
  position: absolute;
  bottom: 0;
  opacity: 0;
  animation: visual_translate 1s ease forwards;
}

#Visual div.anim_left {
  left: 0;
  transform: translateY(150px);
  transform-origin: bottom left;
}
#Visual div.anim_right {
  right: 0;
  transform: translateY(150px);
  transform-origin: bottom right;
}

#Visual img:not(.bg) {
  position: absolute;
  animation: visual_translate 0.75s ease forwards;
  opacity: 0;
}
#Visual div .left_docs {
  top: 100px;
  left: 550px;
  transform: translate(15px, 15px);
  animation-delay: 1.5s;
}
#Visual div .left_people01 {
  bottom: 120px;
  left: 635px;
  transform: translate(15px, -15px);
  animation-delay: 0.75s;
}
#Visual div .left_people02 {
  bottom: 10px;
  left: 582px;
  transform: translate(15px, 15px);
  animation-delay: 0.65s;
}
#Visual div .left_phone {
  top: 305px;
  left: 385px;
  transform: translate(0, 15px);
  animation-delay: 1.2s;
}
#Visual div .left_cloud {
  top: 80px;
  left: 345px;
  opacity: 1;
  animation: visual_hovering 3s ease-in-out infinite alternate;
}

#Visual div .right_floor {
  bottom: 0;
  right: 425px;
  transform: translateY(50px);
}
#Visual div .right_screen01 {
  top: 54px;
  right: 127px;
  transform: translate(50px, 0);
  animation-delay: 0.5s;
}
#Visual div .right_screen02 {
  top: 175px;
  right: 175px;
  transform: translate(50px, 0);
  animation-delay: 0.65s;
}
#Visual div .right_people01 {
  top: 115px;
  right: 522px;
  transform: translate(0, 20px);
  animation-delay: 1s;
}
#Visual div .right_people02 {
  top: 300px;
  right: 470px;
  transform: translate(30px, 30px);
  animation-delay: 1.15s;
}
#Visual div .right_cloud {
  top: 30px;
  right: 405px;
  opacity: 1;
  animation: visual_hovering 3s ease-in-out infinite alternate;
}
#Visual div .right_chart01 {
  top: 200px;
  right: 370px;
  z-index: 1;
  transform: translate(0, 20px);
  animation-delay: 0.75s;
}
#Visual div .right_chart02 {
  top: 233px;
  right: 370px;
  transform: translate(0, 20px);
  animation-delay: 0.75s;
  z-index: 3;
}
#Visual div .right_chart03 {
  top: 210px;
  right: 351px;
  z-index: 2;
  transform: translate(0, 20px);
  animation: visual_translate 0.75s 0.75s ease forwards, visual_translate2 1.5s 1.5s ease-in-out infinite alternate;
}
#Visual div .right_chart04 {
  top: 253px;
  right: 340px;
  transform: translate(0, 20px);
  animation-delay: 0.75s;
  z-index: 1;
}

@keyframes visual_translate {
  100% {
    transform: translate(0);
    opacity: 1;
  }
}
@keyframes visual_translate2 {
  50% {
    transform: translate(0, -20px);
  }
  100% {
    transform: translate(0, -20px);
  }
}
@keyframes visual_hovering {
  100% {
    transform: translateY(30px);
  }
}
#Column .Process,
#Solution {
  border-radius: 20px;
}

#Column {
  display: flex;
  gap: 40px;
  margin: 40px 0;
  width: 100%;
  max-width: var(--main-width);
}

#Column > div {
  width: 50%;
  border-radius: 18px;
}

#Column .Lead {
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #edf3fb;
}

#Column .Lead h2 {
  color: #0d2156;
  text-align: left;
  font-size: 27px;
  font-weight: 700;
  line-height: 145%; /* 39.15px */
  margin-bottom: 10px;
}

#Column .Lead p {
  color: #0d2156;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%; /* 24px */
}

#Column .Lead a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
  padding: 0 20px;
  background: #0d2156;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 150%; /* 27px */
  width: fit-content;
  height: 50px;
}

@media (max-width: 1024px) {
  #Column .Lead h2 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  #Column .Lead h2 {
    font-size: 20px;
  }
}

#Column .Process {
  min-height: 290px;
  padding: 0 15px;
  background-image: url(../images/process_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  border-radius: 20px;
}

#Column .Process h2 {
  font-size: 26px;
  font-weight: 500;
  line-height: 125%; /* 40px */
  margin-bottom: 18px;
}
#Column .Process h2,
#Solution h2 {
  color: #fff;
  text-shadow: 0px 0px 14px #2d90e0;
  transform: translateY(50px);
  opacity: 0;
  transition: 0.3s ease;
}

#Solution h2 {
  text-align: center;
  font-family: "Malgun Gothic";
  letter-spacing: -1.28px;
  font-size: 32px;
  font-weight: 500;
  line-height: 125%; /* 40px */
  margin-bottom: 35px;
}

#Column .Process.visible h2,
#Solution.visible h2 {
  opacity: 1;
  transform: translate(0);
}

#Column .Process > div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

#Column .Process ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#Column .Process ul li {
  width: 165px;
  height: 40px;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 150%; /* 27px */
  position: relative;
  transform: translateY(50px);
  opacity: 0;
  transition: 0.35s ease;
}

#Column .Process.visible ul li {
  opacity: 1;
  transform: translate(0);
}

#Column .Process.visible ul li:nth-child(1) {
  transition-delay: 0.1s;
}
#Column .Process.visible ul li:nth-child(2) {
  transition-delay: 0.2s;
}
#Column .Process.visible ul li:nth-child(3) {
  transition-delay: 0.3s;
}

#Column .Process ul li::before {
  content: "";
  display: inline-block;
  width: calc(100% - 29px);
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  position: absolute;
  top: -10px;
  left: 0;
}

#Column .Process ul li:nth-child(1) {
  background: #1280d3;
}
#Column .Process ul li:nth-child(1)::before {
  border-bottom: 10px solid #146bab;
}
#Column .Process ul li:nth-child(2) {
  background: #005cac;
}
#Column .Process ul li:nth-child(2)::before {
  border-bottom: 10px solid #014885;
}
#Column .Process ul li:nth-child(3) {
  background: #004586;
}
#Column .Process ul li:nth-child(3)::before {
  border-bottom: 10px solid #003566;
}

#Column .Process ul li img {
  width: 24px;
}

#Column .Process div p {
  color: #fff;
  font-size: 12.5px;
  font-weight: 400;
  line-height: 155%;
  transition: 0.35s ease;
}

#Column .Process div p mark {
  color: #fff;
  font-size: 14.5px;
  font-weight: 700;
  line-height: 150%; /* 33px */
  width: fit-content;
  height: 30px;
  padding: 0 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  border: 2px solid #fff;
  margin-bottom: 14px;
  position: relative;
}

#Column .Process div p mark img {
  position: absolute;
  bottom: 0;
}

#Column .Process div p.p_left mark img {
  right: -40px;
}

#Column .Process div p.p_right mark img {
  right: -60px;
}

#Column .Process div p.p_left {
  transform: translateX(50px);
  opacity: 0;
  transition-delay: 0.7s;
}

#Column .Process div p.p_right {
  transform: translateX(-50px);
  opacity: 0;
  transition-delay: 0.8s;
}

#Column .Process.visible div p.p_left,
#Column .Process.visible div p.p_right {
  opacity: 1;
  transform: translate(0);
}

#Column .Process div > img {
  width: fit-content;
  margin: 0 10px;
  opacity: 0;
  /* stroke-dasharray: 1100;
  stroke-dashoffset: 1200;
  animation: intro_svg 2.5s 0.3s linear forwards; */
  transition: 0.35s ease;
}

#Column .Process.visible div > img {
  opacity: 1;
}

#Column .Process.visible div > img.left {
  transition-delay: 1.2s;
}
#Column .Process.visible div > img.right {
  transition-delay: 1.5s;
}

#Column .Process div > img.mo {
  display: none;
}

@keyframes intro_svg {
  100% {
    stroke-dashoffset: 0;
  }
}

#Solution {
  width: 100%;
  max-width: var(--main-width);
  background-color: #0057c7;
  background-image: url(../images/solution_pattern.svg);
  background-position: center right 150px;
  background-repeat: no-repeat;
  background-size: 320px;
  padding: 65px 15px;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#Solution h2,
#Solution p {
  width: 100%;
  max-width: 910px;
  text-align: left;
}

#Solution h2 {
  margin-bottom: 10px;
}

#Solution p {
  color: #fff;
  font-size: 17px;
  font-family: "Malgun Gothic";
  letter-spacing: -1.36px;
  font-weight: 700;
  line-height: 160%; /* 25.6px */
  transform: translateY(50px);
  opacity: 0;
  transition: 0.35s ease;
}

#Solution.visible p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

#Solution div {
  display: flex;
  width: 100%;
  max-width: 910px;
  margin-top: 30px;
  gap: 30px;
  transform: translateY(50px);
  opacity: 0;
  transition: 0.35s ease;
}

#Solution.visible div {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

#Solution div a {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

#Solution div a span {
  color: #0d2156;
  font-size: 22px;
  font-weight: 700;
  line-height: 160%;
  padding: 0 15px;
}

@media (max-width: 1800px) {
  #Visual div {
    scale: 0.85;
  }
}
@media (max-width: 1600px) {
  #Visual div {
    scale: 0.75;
  }
}
@media (max-width: 1450px) {
  #Visual div {
    scale: 0.65;
  }
}
@media (max-width: 1300px) {
  #Visual div {
    scale: 0.55;
  }
}

@media (max-width: 1650px) {
  #Column .Lead h2 {
    font-size: 24px;
  }
}

@media (max-width: 1600px) {
  #Column {
    gap: 20px;
  }

  #Column .Process div > img.pc {
    width: 60px;
  }
}
@media (max-width: 1500px) {
  #Column .Process div p {
    font-size: 11.5px;
  }
}
@media (max-width: 1450px) {
  #Column .Lead h2 {
    font-size: 20px;
  }

  #Column .Lead p {
    font-size: 14px;
  }

  #Column .Process div > img.pc {
    width: 35px;
  }

  #Column .Process ul li {
    width: 150px;
  }
}
@media (max-width: 1400px) {
  #Column {
    flex-direction: column;
  }
  #Column div {
    width: 100%;
  }

  #Column .Lead {
    align-items: center;
  }
  #Column .Lead h2 {
    font-size: 22px;
    text-align: center;
  }
  #Column .Process div p {
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  #Visual {
    min-height: fit-content;
    padding: 120px 15px 230px;
  }

  #Visual h1 {
    font-size: 32px;
  }
  #Visual p {
    font-size: 18px;
  }

  #Visual p::before {
    height: 3px;
  }

  #Visual div.anim_left {
    display: none;
  }

  #Visual div.anim_right {
    width: 882px;
    scale: 0.5;
    right: unset;
    left: 50%;
    transform: translateX(calc(-50% - 420px)) !important;
    transform-origin: center bottom;
  }

  #Column .Process h2,
  #Solution h2 {
    font-size: 28px;
  }

  #Column .Process div p mark {
    font-size: 16px;
    height: 30px;
    padding: 0 20px;
  }

  #Column .Process div p {
    font-size: 14px;
  }

  #Column .Process ul li {
    width: 200px;
    height: 45px;
    font-size: 16px;
  }

  #Column .Process div p.p_left {
    transform: translateY(50px);
  }

  #Column .Process div p.p_right {
    transform: translateY(-50px);
  }

  #Solution div {
    gap: 10px;
  }

  #Solution div a span {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  #Column .Process {
    padding: 30px 15px;
  }
  #Column .Process > div {
    flex-direction: column;
  }

  #Column .Process div p {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  #Column .Process div p br {
    display: none;
  }

  #Column .Process div p mark img {
    display: none;
  }

  #Column .Process div > img.pc {
    display: none;
  }

  #Column .Process div > img.mo {
    display: block;
    margin: 20px 0;
  }

  #Column .Lead h2 {
    font-size: 18px;
  }

  #Column .Lead p {
    font-size: 14px;
  }
  #Column {
    margin: 20px 0;
  }

  #Column .Lead {
    padding: 25px 20px;
  }
}

@media (max-width: 768px) {
  #Visual h1 {
    font-size: 26px;
  }
  #Visual p {
    font-size: 16px;
  }

  #Visual p::before {
    width: 22px;
  }

  #Column .Process h2,
  #Solution h2 {
    font-size: 22px;
  }
  #Solution {
    padding: 30px 15px;
  }
  #Solution div a span {
    font-size: 16px;
  }
}
