/* リセットCSS */
.sa-008-ur-favorite-app * {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

.sa-008-ur-favorite-app body {
  line-height: 1;
}

.sa-008-ur-favorite-app article,
.sa-008-ur-favorite-app aside,
.sa-008-ur-favorite-app details,
.sa-008-ur-favorite-app figcaption,
.sa-008-ur-favorite-app figure,
.sa-008-ur-favorite-app footer,
.sa-008-ur-favorite-app header,
.sa-008-ur-favorite-app hgroup,
.sa-008-ur-favorite-app menu,
.sa-008-ur-favorite-app nav,
.sa-008-ur-favorite-app section {
  display: block;
}

.sa-008-ur-favorite-app nav ul {
  list-style: none;
}

.sa-008-ur-favorite-app blockquote,
.sa-008-ur-favorite-app q {
  quotes: none;
}

.sa-008-ur-favorite-app blockquote:before,
.sa-008-ur-favorite-app blockquote:after,
.sa-008-ur-favorite-app q:before,
.sa-008-ur-favorite-app :after {
  content: '';
  content: none;
}

.sa-008-ur-favorite-app a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

.sa-008-ur-favorite-app ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

.sa-008-ur-favorite-app mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

.sa-008-ur-favorite-app del {
  text-decoration: line-through;
}

.sa-008-ur-favorite-app abbr[title],
.sa-008-ur-favorite-app dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

.sa-008-ur-favorite-app table {
  border-collapse: collapse;
  border-spacing: 0;
}

.sa-008-ur-favorite-app hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

.sa-008-ur-favorite-app input,
.sa-008-ur-favorite-app select {
  vertical-align: middle;
}
.sa-008-ur-favorite-app .toast {
  font-size: 12px;
  font-weight: bold;
  visibility: hidden;
  transform: translateX(-50%);
  background-color: #ffffff;
  text-align: center;
  border-radius: 4px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
  bottom: 20px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.sa-008-ur-favorite-app .toast.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 20px;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 20px;
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    bottom: 20px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    bottom: 20px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}