@charset "UTF-8";
* {
  text-orientation: inherit;
  text-orientation: initial;
  text-orientation: initial;
  text-orientation: unset;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.case {
  display: block;
  padding: 0;
  font-family: MSIBodyFont, "Microsoft JhengHei", sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.case.case__connection {
  width: 95%;
  margin: 5% auto;
  border: 1px solid #5c5a5a;
  color: #ccc;
}
.case__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 10px;
}
@media screen and (max-width: 960px) {
  .case__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.case__flex .left__title {
  display: block;
  width: 20%;
  font-weight: bold;
  text-transform: uppercase;
}
@media screen and (max-width: 960px) {
  .case__flex .left__title {
    width: 100%;
    margin: 0 auto;
  }
}
.case__flex .right__io {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 80%;
}
@media screen and (max-width: 960px) {
  .case__flex .right__io {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}
.case__flex .right__io-img {
  display: block;
  width: 40%;
}
@media screen and (max-width: 960px) {
  .case__flex .right__io-img {
    width: 90%;
    margin: 0 auto;
  }
}
.case__flex .right__io-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 60%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  counter-reset: li;
}
@media screen and (max-width: 960px) {
  .case__flex .right__io-content {
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .case__flex .right__io-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.case__flex .right__io-content ol.caseIo {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .case__flex .right__io-content ol.caseIo {
    width: 100%;
  }
}
.case__flex .right__io-content ol.caseIo li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}
.case__flex .right__io-content ol.caseIo li::before {
  border-radius: 0.25em;
  content: counter(li);
  counter-increment: li;
  display: inline-block;
  left: 0;
  position: absolute;
  text-align: center;
  width: 1.5em;
  border-radius: 50%;
}