@charset "UTF-8";

/* 初期状態：スマホ用要素非表示、PC用表示 */
.pc_only {
  display: inline;
}
.sp_only {
  display: none;
}

/* スマホ表示：切り替え */
@media screen and (max-width: 800px) {
  .pc_only {
    display: none !important;
  }
  .sp_only {
    display: block !important;
  }
   /*.mv_text {
    text-align: center;
  }
 .mv_title {
    font-size: 1.8rem;
    line-height: 1.6;
  }
  .mv_subtext {
    font-size: 1.4rem;
    line-height: 1.6;
  }*/
  .sp_space {
    display: inline-block;
    margin-top: 5px;
    margin-bottom: 5px;
  }
}
