@charset "utf-8";

*,
::before,
::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

A:LINK {
  /* リンク */
  color: #A0A0FF;
  text-decoration: none;
  /* 下線を消す */
}

A:VISITED {
  /* 既に見たリンク */
  color: #A0A0FF;
  text-decoration: none;
}

A:ACTIVE {
  /* クリック時のリンク */
  color: #BEFDB7;
  text-decoration: none;
  transition:0.1s;
}

A:HOVER {
  /* カーソルが上にある時のリンク */
  color: #BEFDB7;
  text-decoration: none;
  position: relative;
}

body{
  background-color:#fff;
}

header {
  background-position: top, bottom;
  background-repeat: repeat-x;
  height: 112px;
}

h1 {
  text-align: right;
  padding-top: 32px;
  /* 文字色 */
  font-size: 17px;
  /* 文字の大きさ */
  letter-spacing: 1px;
  /* 文字間隔 */
  font-weight: bold;
  /* 文字の太さ */
  margin-right: 28px;
}

main {
  color: #A0A0FF;
  /* 文字色 */
  font-size: 10pt;
  /* 文字サイズ */
  font-family: メイリオ;
  /* フォント */
  letter-spacing: 1px;
  /* 文字間隔 */
  
}

.copyright {
  text-align: center;
  font-size: 10pt;
  letter-spacing: 1px;
  margin-top: 40px;
  margin-bottom: 8px;
  color: #A0A0FF;
}

.back{
  text-align: center;
}