@charset "UTF-8";

/* single-case-intro-sec */
.single-case-intro-eles .intro-wrap1 {
  position: relative;
}
.single-case-intro-eles .intro-wrap1 .img-wrap {
  max-width: 500px;
  margin: 0 auto;
}
.single-case-intro-eles .intro-wrap1 .txt-wrap {
  position: absolute;
  top: 2%;
  left: 5%;
}
.single-case-intro-eles .intro-wrap1 .txt-wrap p {
  background: rgba(0,96,192,.63);
  color: #fff;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.5;
  padding: 1rem;
}
@media screen and (max-width: 767px) {
  .single-case-intro-eles .intro-wrap1 .txt-wrap p {
    font-size: 2rem;
  }
}

/* single-case-project-sec */
.ul-case-project {
  border-top: 1px solid #181818;
  border-right: 1px solid #181818;
  border-left: 1px solid #181818;
  display: flex;
  flex-wrap: wrap;
}
.ul-case-project li {
  width: calc(100% / 2);
}
.dl-case-project {
  display: flex;
  height: 100%;
}
.dl-case-project dt,
.dl-case-project dd {
  padding: 1rem;
  border-bottom: 1px solid #181818;
}
.dl-case-project dt {
  background: #f5f5f5;
  font-weight: 600;
  width: 100px;
}
.dl-case-project dd {
  width: calc(100% - 100px);
}
.Js-Project-Gallery .slick-slide {
  margin: 0 2rem;
}
@media screen and (max-width: 767px) {
  .ul-case-project li {
    width: 100%;
  }
  .dl-case-project {
    flex-wrap: wrap;
  }
  .dl-case-project dt {
    width: 100%;
  }
  .dl-case-project dd {
    width: 100%;
  }
}

/* single-case-history-sec */
.ul-case-history {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
.ul-case-history::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #6A62AD;
  width: 2px;
  height: 100%;
}
.ul-case-history li {
  position: relative;
  width: 50%;
}
.ul-case-history li::before,
.ul-case-history li::after {
  content: '';
  position: absolute;
}
.ul-case-history li::before {
  top: 0;
  background: #6A62AD;
  border-radius: 50%;
  height: 20px;
  width: 20px;
}
.ul-case-history li::after {
  top: 10px;
  border-top: 2px dotted #6A62AD;
  height: 2px;
  width: 70px;
}
.ul-case-history li:nth-child(odd)::before {
  left: -10px;
}
.ul-case-history li:nth-child(even)::before {
  right: -10px;
}
.ul-case-history li:nth-child(odd)::after {
  left: 0;
}
.ul-case-history li:nth-child(even)::after {
  right: 0;
}
.ul-case-history li:nth-child(odd) {
  margin-left: auto;
}
.ul-case-history li:nth-child(odd) dl {
  padding-left: 10rem;
}
.ul-case-history li:last-child dl {
  position: relative;
}
.ul-case-history li:last-child dl::after {
  content: '';
  position: absolute;
  top: 20px;
  right: -2px;
  background: #fff;
  width: 4px;
  height: 100%;
}
.dl-case-history dt {
  color: #ccc;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
}
.dl-case-history dd {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .ul-case-history::before {
    left: 0;
    transform: initial;
  }
  .ul-case-history li {
    width: 100%;
  }
  .ul-case-history li:not(:last-child) {
    margin-bottom: 2rem;
  }
  .ul-case-history li::after {
    width: 30px;
  }
  .ul-case-history li:nth-child(odd)::before {
    left: -10px;
  }
  .ul-case-history li:nth-child(even)::before {
    right: initial;
    left: -10px;
  }
  .ul-case-history li:nth-child(even)::after {
    right: initial;
  }
  .ul-case-history li:nth-child(odd) {
    margin-left: initial;
  }
  .ul-case-history li dl {
    padding-left: 5rem !important;
  }
  .ul-case-history li:last-child dl::after {
    right: initial;
    left: -2px;
  }
  .dl-case-history dt {
    font-size: 2rem;
  }
  .dl-case-history dd {
    font-size: 1.6rem;
  }
}