@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;    
 }

 .pink {
  color: #d04f97;
 }