@charset "UTF-8";
/* ========================================
* 2021/08 導入事例
* ====================================== */
/*事例タイトル*/
.fs-22 {
  font-size: 22px;
}

/*事例詳細*/
.case_detail_area {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  display: -ms-flexbox;
  /* IE10 */
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  /* IE10 */
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 80px;
}

.case_detail_area:last-of-type {
  margin-bottom: 0;
}

.case_detail_logo {
  width: 28%;
}

.case_detail_txt {
  width: 70%;
}

.case_detail_logo img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .case_detail_logo,
  .case_detail_txt {
    width: 100%;
  }
  .case_detail_logo {
    text-align: center;
  }
  .case_detail_logo img {
    width: 50%;
  }
}

.case_detail_txt dl {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  display: -ms-flexbox;
  /* IE10 */
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  /* IE10 */
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.case_detail_txt dt {
  width: 13%;
}

.case_detail_txt dd {
  width: 87%;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .case_detail_txt dt,
  .case_detail_txt dd {
    width: 100%;
  }
}

.case_detail_txt_icon {
  display: inline-block;
  background-color: #eaf5fc;
  text-align: center;
  font-weight: bold;
  padding: 10px 15px;
  margin-bottom: 20px;
}

.case_detail_txt dd ul {
  margin: 0 0 0 1.5em;
  list-style: disc;
}

/*事例ボタン*/
.case_detail_btn {
  float: right;
}

@media screen and (max-width: 480px) {
  .case_detail_btn {
    float: none;
  }
}

.case_detail_btn a {
  display: inline-block;
  position: relative;
  cursor: pointer;
  text-align: center;
  color: #FFF;
  line-height: 150%;
  padding: 13px 30px;
  background-color: #004386;
}

.case_detail_btn a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1em;
  margin: auto;
  width: .5em;
  height: .5em;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.case_detail_btn a:hover {
  opacity: .7;
}