/* bootstrapのcssに色指定作業を行う */
.bg-main01 {
  background: var(--main01) !important;
}
.txt-main01 {
  color: var(--main01);
}
.bg-main02 {
  background: var(--main02) !important;
}
.txt-main02 {
  color: var(--main02);
}
.bg-grayl {
  background: var(--gray-light);
}
.txt-grayl {
  color: var(--gray-light);
}
/*PCで無効*/
.pc_hid {
  display: none;
}
.sp_hid {
  display: block;
}
.box-order{
 display: flex;
}
/*スマートフォンで有効*/
@media screen and (max-width:768px) {
  .pc_hid {
    display: block;
  }
  .sp_hid {
    display: none;
  }
  .h4, h4 {
    font-size: 1.2rem;
  }
  .box-order{
    flex-direction: column;
  }
  .order1 {
    order: 1;
  }
  .order2 {
    order: 2;
  }
}
/*印刷時に非表示*/
@media print {
  .hideInPrint {
    display: none;
  }
}
/*フォームのスケール*/
.scalesize {
  transform: scale(1.5);
  margin-top: 7px;
}
/*契約書表示*/
.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}
.listno {
  margin: 5px;
  width: 100px;
}
.listtext {
  margin: 5px;
  width: calc(100% - 120px);
}