@charset "UTF-8";
/* -------------------------------------------------- */
/* file   : promise.css                               */
/* update : 2023                                      */
/* -------------------------------------------------- */
/* -------------------------------------------------- */
/* 全デバイス共通(PC向け) */
/* --------------------------------------------------- */
h2 {
  text-align: center;
  font-size: 44px;
  font-weight: bold;
  line-height: 1.8;
  margin-bottom: 60px;
}
h2 .num {
  display: block;
  font-size: 20px;
  font-weight: bold;
  color: #990044;
}

section.case_list {
  margin-bottom: 100px;
}
section.case_list:last-of-type {
  margin-bottom: 0;
}
section.case_list li {
  display: flex;
  justify-content: flex-start;
  flex-direction: row-reverse;
  padding: 50px 0;
  border-top: 1px solid #DFDFDF;
}
section.case_list li:last-child {
  border-bottom: 1px solid #DFDFDF;
}
section.case_list .pic_box {
  width: 48.18%;
}
section.case_list .text_box {
  width: 48.18%;
  margin-right: 3.64%;
}
section.case_list .text_box .title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 30px;
}
section.case_list .text_box .title span {
  display: inline-block;
  color: #990044;
  margin-right: 20px;
}

.text-animation_test {
  opacity: 0;
}
.text-animation_test.show {
  opacity: 1;
}
.text-animation_test.show .text-animation-span {
  display: inline-block;
  overflow: hidden;
}
.text-animation_test.show span {
  display: inline-block;
  letter-spacing: 0.1em;
  animation: showText 0.5s backwards;
}

@keyframes showText {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ---------------全デバイス共通(pc)-end--------------------- */
/*----------------------------------------------------------*/
/* tablet用のCSS */
/*----------------------------------------------------------*/
@media screen and (min-width: 560px) {
  /* tablet */
  /* -------------------tablet END------------------------- */
}
/*----------------------------------------------------------*/
/* sp用のCSS */
/*----------------------------------------------------------*/
@media screen and (max-width: 750px) {
  /* sp */
  h2 {
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 25px;
  }
  h2 .num {
    font-size: 18px;
  }
  section.case_list {
    margin-bottom: 50px;
  }
  section.case_list li {
    display: block;
    padding: 30px 0;
  }
  section.case_list .pic_box {
    width: 100%;
    margin-bottom: 15px;
  }
  section.case_list .text_box {
    width: 100%;
    margin-right: 0;
  }
  section.case_list .text_box .title {
    text-align: center;
    font-size: 16px;
    margin-bottom: 15px;
  }
  section.case_list .text_box .title span {
    display: block;
    margin-right: 0;
  }
  /* ---------------------SP END----------------------------- */
}/*# sourceMappingURL=promise.css.map */