@charset "UTF-8";
.button {
  display       : inline-block;
  border-radius : 20%;          /* 角丸       */
  font-size     : 20pt;        /* 文字サイズ */
  text-align    : center;      /* 文字位置   */
  cursor        : pointer;     /* カーソル   */
  padding       : 5px 18px;   /* 余白       */
  background    : #ff4d4d;     /* 背景色     */
  color         : #ffffff;     /* 文字色     */
  line-height   : 1em;         /* 1行の高さ  */
  transition    : .3s;         /* なめらか変化 */
  box-shadow    : 2px 2px #666666;  /* 影の設定 */
  border        : 2px solid #ff4d4d;    /* 枠の指定 */
}
.button:hover {
  box-shadow    : none;        /* カーソル時の影消去 */
  color         : #ff4d4d;     /* 背景色     */
  background    : #ffffff;     /* 文字色     */
}
@media (min-width: 1025px) {
#cta-fixed {
    bottom: 100%;
}
}