@charset "utf-8";

/**
 * 
 *  拡張スタイル
 *
 */

/** Page top move button
---------------------------------------- */
#pagetop {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 98;
}
#pagetop a {
  display: block;
  color: #fff;
  border: solid 2px rgba(255, 255, 255, 0.8);
  border-radius:10px;
  padding: 10px 20px;
  text-decoration: none;
}

/** BlinkingIcon
---------------------------------------- */
.blinking {
  -webkit-animation: blink 0.7s ease-in-out infinite alternate;
  -moz-animation: blink 0.7s ease-in-out infinite alternate;
  animation: blink 0.7s ease-in-out infinite alternate;
  color: #ffffff;
  background-color: #f00;
  font-size: 12px;
  font-size: 1.2rem;
  margin-right: 5px;
  padding: 1px 10px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}
@-webkit-keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/** Loading
---------------------------------------- */
.loadingWrap {
  width: 100%;
  height: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  opacity: 0.95;
}
.loadingWrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -32px 0 0 -32px;
  width: auto;
}

/** ListStyleType
---------------------------------------- */
.lst-check li {
  position: relative;
  margin-left: 20px;
}
.lst-check li::after {
  display: block;
  content: "";
  position: absolute;
  top: 0.7em;
  left: -1em;
  width: 8px;
  height: 3px;
  border-left: 2px solid #d50000;
  border-bottom: 2px solid #d50000;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.lst-chara li {
  position: relative;
  margin-left: 20px;
}
.lst-chara li::after {
  display: block;
  position: absolute;
  top: 0;
  left: -1.2em;
}
.lst-chara li::after {
  content: "●";
}

.lst-arrow li {
  position: relative;
  margin-left: 20px;
}
.lst-arrow li::after {
  display: block;
  content: "";
  position: absolute;
  top: 0.7em;
  left: -1em;
  width: 6px;
  height: 6px;
  border-right: 1px solid #666;
  border-bottom: 1px solid #666;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/** BorderTitle
---------------------------------------- */
.bordertitle {
  display: flex;
  align-items: center;
}
.bordertitle:before,
.bordertitle:after {
  border-top: 1px solid #c8c8c8;
  content: "";
  flex-grow: 1;
}
.bordertitle:before {
  margin-right: 1rem;
}
.bordertitle:after {
  margin-left: 1rem;
}
