// MV右上のボタンのfontを太く
.p-header-floating-btn__editable-btn .c-btn a {
  font-weight: bold;
}

// スマホ下部追従のバナーテキストサイズの変更
.p-header-floating-btn__editable-btn .c-btn a.pera1-editable {
    font-size: 14px !important;
}

// 汎用
.pc{
    display: block;
  }
  .sp{
    display: none;
  }
@media (max-width: 767px) {
  .pc{
    display: none;
  }
  .sp{
    display: block;
  }
}