/*日吉　左寄せデバイスボタン／ディスクリート早見表*/
 .device-leftbutton {
   display: flex;
   align-items: center;
   justify-content: center;
   line-height: 1;
   text-decoration: none;
   color: #ffffff;
   font-size: 16px;
   border-radius: 5px;
   width: 30%;
   height: 40px;
   transition: 0.3s;
   background-color: #437bb7;
   margin-right:auto;/*左寄せ*/
 }
 .device-leftbutton:hover {
   opacity: .7;
   color: #ffffff;
   text-decoration: none;
 }
 @media screen and (max-width: 800px) {
   .device-leftbutton {
    width: 100%;
   }
  }