@charset "utf-8";

/*スタイル調整*/
* {
 box-sizing:border-box;
 margin: 0; /*勝手に余白がつくのを防ぐ*/
 padding: 0;    
}
    
body{
  font-size: 16px;
  line-height: 1.6;
  font-family: YuGothic,"ヒラギノ角ゴ ProN W3",メイリオ,sans-serif;
  color: #17184b; /*鉄紺*/
  background-color: #f7f6f5; /*パールホワイト*/    
  margin: 0;	
}
    
a{
  text-decoration: none;   
  color:black;
  font-style: normal;    
 }

  .square{
   display: block;
   box-sizing: border-box;
   background: #f7f6f5;
   padding: auto;
   padding-bottom: 5px;
   color: #0927eb;
   font-size: 18px;
   text-align: left;  
  }
  .square img{
   width: 20px;
   height: auto;
  }  
 