
/* ------------------------
 display
---------------------------- */
.sp-only {
    display: none !important;
}
@media only screen and (max-width: 768px) {
    .pc-only {
        display: none !important;
    }
}

/* ------------------------
 margin
---------------------------- */
.mt0 {
    margin-top: 0 !important;
}
.mt4 {
    margin-top: 4px !important;
}
.mt32 {
    margin-top: 32px !important;
}
.mt48 {
    margin-top: 48px !important;
}
.mt56 {
    margin-top: 56px !important;
}
.mb40 {
    margin-bottom: 40px !important;
}
@media only screen and (max-width: 940px) {
    .sp-mt0 {
        margin-top: 0 !important;
    }
    .sp-mt32 {
        margin-top: 32px !important;
    }
    .sp-mt40 {
        margin-top: 40px !important;
    }
}

/* ---------------------------
 min-width
------------------------------ */

@media only screen and (min-width: 769px) {
    .pc-min-w540 {
        min-width:540px;
        }
}

/* --------------------------
 font
----------------------------- */
.fs13 {
    font-size: 13px !important;
    }

.fw-bold {
        font-weight: bold !important;
        }

/* ------------------------------
 align
--------------------------------- */
.t-center {
    text-align: center !important;
  }
.t-left {
    text-align: left !important;
  }
  
  @media only screen and (max-width: 940px) {
    .sp-t-center {
      text-align: center !important;
    }
  }
