/*************************************************

section

*************************************************/
/* support-itembox
---------------------------------------*/
.support-itembox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .support-itembox {
    display: block;
    margin-bottom: 50px;
  }
}
.support-itembox.is-bg {
  padding: 30px 45px 45px;
  background-color: #A0C3FC;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .support-itembox.is-bg {
    padding: 15px 10px 15px;
    border-radius: 15px;
  }
}

.support-itembox__img {
  overflow: hidden;
  width: 45%;
  border-radius: 20px;
  line-height: 0;
}
@media screen and (max-width: 767px) {
  .support-itembox__img {
    width: auto;
    margin-bottom: 25px;
  }
}
.support-itembox__img img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .is-rev .support-itembox__img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.support-itembox__img + .support-itembox__letters {
  width: 48.5%;
}
@media screen and (max-width: 767px) {
  .support-itembox__img + .support-itembox__letters {
    width: auto;
  }
}

.support-itembox__title {
  margin-bottom: 15px;
  color: #1E2678;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .support-itembox__title {
    font-size: 18px;
  }
}

.support-itembox__texts {
  letter-spacing: 0.05em;
}
.is-bg .support-itembox__texts {
  padding: 25px 45px;
  background-color: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .is-bg .support-itembox__texts {
    padding: 15px 15px;
    border-radius: 10px;
  }
}