@charset "UTF-8";

/* bodyの構造と色 */
body {
  min-width: 0;
  min-height: 0;
}


/* マージン */
.content_wrap_rd {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 180px;
}


/* ボタン */
.button_normal_rd {
  border-radius: 15px;
  border-style: none;
  background-color: #000;
  border-color: #000;
  width: 100%;
  padding: 15px 50px;
  font-size: 20px;
  color: #FFF;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
}


/* フッター */
.copyright {
  position: fixed;
  bottom: 0;
  color: #FFF;
  text-align: center;
  font-weight: lighter;
  letter-spacing: 2px;
  background-color: rgba(0 0 0 / 100%);
  max-width: 2600px;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 999;
}



/* SPサイズ */
@media screen and (max-width:1020px) { 
  /* 画面サイズが1020pxまではここを読み込む */

  /* マージン */
  .content_wrap_rd {
    margin-top: 150px;
  }

}