@charset "utf-8";

/*-------------------------------------------------------------------------------
ヘルパークラス
-------------------------------------------------------------------------------*/

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mt-5 {
  margin-top: 3rem;
}

.pb-0 {
  padding-bottom: 0;
}

.p-1 {
  padding: 0.25rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 1rem;
}

.p-4 {
  padding: 1.5rem;
}

.p-5 {
  padding: 3rem;
}

.mr-10px {
  margin-right: 10px;
}

.w-100 {
  width: 100%;
}

.w-60 {
  width: 60%;
}

.w-49 {
  width: 49%;
}

.w-40 {
  width: 40%;
}

.w-167px {
  width: 167px;
}

.bg-white {
  background-color: #fff;
}

.bg-white-important {
  background-color: #fff !important;
}

.bg-red {
  background-color: #ab1f24;
}

.text-center {
  text-align: center;
}

.text-gray {
  color: #727272;
}

.text-muted {
  color: #707070;
}

.text-blue {
  color: #005b9b;
}

.text-red {
  color: #ab1f24;
}

.text-white {
  color: #fff;
}

.text-black {
  color: #444;
}

.text-black-important {
  color: #444 !important;
}

.d-inline-block {
  display: inline-block;
}

.d-flex {
  display: flex;
}

.d-inline-flex {
  display: inline-flex;
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.justify-content-between {
  justify-content: space-between;
}

.font-small {
  font-size: 14px;
  line-height: 1.5;
}

.border-black {
  border-color: #444;
}

.shadow-sm {
  box-shadow: 1px 1px 6px 0px rgba(0, 0, 0, 0.16);
}