@charset 'utf-8';

.sec_top_ttl_box p {
  text-align: center;
}
.wave_sec > .sec:first-child {
  margin-top: 0;
  padding-top: 0;
}
.wave_sec > .sec:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}


/* graph list
*****************************************/
  .graph_list {
    display: flex;
    flex-wrap :wrap;
    justify-content: space-between;
    margin-top: calc(var(--spacing-vertical) - var(--spacing-unit) * 2);
  }
  .graph_item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-weight: 700;
    text-align: center;
    background: #FFF;
    margin-top: calc(var(--spacing-unit) * 2);
    flex-basis: calc(50% - var(--spacing-unit));
    padding: var(--spacing-unit) calc(var(--spacing-unit) / 2);
    border-radius: 10px;
  }
  .graph_item.-col1 {
    flex-basis: 100%;
  }
  .graph_ttl,
  .graph_txt {
    font-size: var(--font-size-22);
    color: #0070bd;
  }
  .graph_ttl {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: calc(var(--spacing-unit) / 2);
    min-height: 2.4em;
  }
  .graph_img {
    width: 100%;
    max-width: 280px;
    margin: auto;
  }
  .graph_item.-col1 .graph_img {
    max-width: 800px;
  }
  .graph_txtbox {
    margin-top: var(--spacing-unit-sm);
    flex: 1 0 auto;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
  }
  .graph_txtbox p + p {
    margin-top: 1em;
  }

@media screen and (max-width: 767px) {
/* graph list
*****************************************/
  .graph_list {
    display: block;
  }
  .graph_item:nth-child(n + 2) {
    margin-top: var(--spacing-unit);
  }
}