/* ========================================
utility.css
======================================== */

/* =========================
margin-top
========================= */

.u-mt10 {
  margin-top: 10px;
}

.u-mt15 {
  margin-top: 15px;
}

.u-mt20 {
  margin-top: 20px;
}

.u-mt25 {
  margin-top: 25px;
}

.u-mt30 {
  margin-top: 30px;
}

.u-mt35 {
  margin-top: 35px;
}

.u-mt40 {
  margin-top: 40px;
}

/* =========================
margin-bottom
========================= */

.u-mb10 {
  margin-bottom: 10px;
}

.u-mb15 {
  margin-bottom: 15px;
}

.u-mb20 {
  margin-bottom: 20px;
}

.u-mb25 {
  margin-bottom: 25px;
}

.u-mb30 {
  margin-bottom: 30px;
}

.u-mb35 {
  margin-bottom: 35px;
}

.u-mb40 {
  margin-bottom: 40px;
}

/* =========================
text align
========================= */

.u-center {
  text-align: center;
}

.u-left {
  text-align: left;
}

.u-right {
  text-align: right;
}

/* =========================
display
========================= */

.u-flex {
  display: flex;
}

.u-block {
  display: block;
}

/* =========================
width
========================= */

.u-w-full {
  width: 100%;
}

/* =========================
device
========================= */

.u-sp-hide {
  display: block;
}

.u-pc-hide {
  display: none;
}

@media (max-width: 920px) {
  .u-sp-hide {
    display: none;
  }

  .u-pc-hide {
    display: block;
  }
}
