@charset "UTF-8";
.plan-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}
.plan-list .c-title.-level3 {
  margin-top: 8px;
}

/* ▼モバイルのみ付け足すデザイン */
@media screen and (max-width: 767.98px) {
  .c-title.-level1 img {
    width: auto;
    max-height: 42px;
  }
}
/* ▼タブレット用デザインとして付け足すデザイン */
@media screen and (min-width: 768px) {
  .plan-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .plan-list > li {
    width: calc((100% - 32px) / 2);
  }
}
/* ▼PC用デザインとして付け足すデザイン */