/* 2カラムレイアウト（PC時：2カラム gap 50px、スマホ時：1カラム） */
.two-column {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.two-column > * {
  width: 100%;
}

/* PC時：2カラム表示 */
@media (min-width: 641px) {
  .two-column {
    flex-direction: row;
    gap: 50px;
  }
  
  .two-column > * {
    flex: 1;
    width: auto;
  }
}

/* PC時：幅60%で中央揃え */
.u-t-center {
    text-align: center;
}

.width-60-center {
  width: 100%;
}

@media (min-width: 641px) {
  .width-60-center {
    width: 60%;
  }
}

@media screen and (max-width: 640px) {
    .campaign_treat_blk .blk_01 .box_01 {
        width: 100%!important;
    }
}
