@charset "utf-8";

.custom_col {
  display: flex;
}
.custom_col .col_01 {
  width: 221px;
  margin-right: 22px;
}
.custom_col .col_02 {
  width: 464px;
}
.custom_col .col_02 .inner {
  display: flex;
}
.custom_col .col_02 .col {
  width: 221px;
}
.custom_col .col_02 .col:first-child {
  margin-right: 22px;
}

@media only screen and (max-width: 767px){
  .custom_col {
    display: block;
  }
  .custom_col .col_01,
  .custom_col .col_02 .col {
    width: calc(50% - (15px*1) /2)
  }
  .custom_col .col_02 {
    width: 100%;
  }
}