@charset "UTF-8";
/* CSS Document */



/*全ての要素に適用させてpタグなどに入っている余計なマージンとパディングをリセット*/

* {
      margin: 0px;
      padding: 0px;
}


/*背景色（background）、フォントの種類（font-family）、サイズ（font-size）、カラー（color）、ライン高（line-height）の設定*/

/*リンクカラーの設定*/

a:link {
      text-decoration: none;
}


/*訪問済みリンクの設定*/

a:visited {
      text-decoration: none;
}


/*リンクが付いている箇所をロールオーバーした時の設定*/

a:hover {
      text-decoration: none;
}


/*画像にリンクを張った時画像の周りにボーダー削除*/

a img {
      border-width: 0px;
      border-style: none;
      border-color: #fff;
      background: transparent;
}