@charset "UTF-8";

/* CSS Document */
html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  /* width: 100%; */
}

body {
  color: #000000;
  /* RGB */
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 160%;
  text-align: center;
  max-width: 1440px;
  margin: auto;

}


a {
  text-decoration: none;
  color: #ffffff;
}

a:hover {
  opacity: 0.5;
}


/* topへ戻る */
.page-top-wrapper{
  position: relative; 
  max-width: 1440px;

}

#page-top {
  background-color: #000000;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  position: fixed; /* 画面の位置固定 */
  right:80px;
  bottom: 20px;
  z-index: 9900;
  
}

#page-top a {
  text-decoration: none;
  color: #ffffff;
  font-size: 1.6rem;
  line-height: 6.2rem;
  
}

@media screen and (max-width: 1250px){
  #page-top {
    right:20px;
  }
}

@media screen and (max-width: 605px){
  #page-top {
    width: 40px;
    height: 40px;
  }

  #page-top a {
    font-size: 1.4rem;
    line-height: 4rem;
    
  }
}