/*****************************************************************************
CSS only for 20220205 page
*****************************************************************************/

/* .Info
-----------------------------------------*/
.Info {
  background-color: #fff;
  border: 3px solid #004ea2;
  margin: 40px 0;
}
.Info__inner {
  display: flex;
  flex-direction: row-reverse;
  padding: 26px;
}
@media screen and (max-width: 767px) {
  .Info__inner {
    flex-direction: column;
    padding: 32px 24px;
  }
}
.Info__text {
  flex: 1;
  padding-left: 24px;
}
@media screen and (max-width: 767px) {
  .Info__text {
    padding-left: 0;
  }
}
.Info__text > p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.9;
  margin-bottom: 1.2em;
}
.Info__text > *:first-child {
  margin-top: 0;
}
.Info__text > *:last-child {
  margin-bottom: 0;
}
.Info__img {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .Info__img {
    width: 100%;
    margin-top: 20px;
  }
}
.Info__img img {
  max-width: 100%;
  height: auto;
}