/* Common */
/*------------------------------------*/
.checksp{
  position: fixed;
  width: 1px;
  height: 1px;
  top: -10px;
  left: -10px;
  z-index: 99999;
  display: none;
}
@media (min-width: 768px) {
  .checksp{
    display: block;
  }
}

.hide {
  display: none !important;
}

.hideSp {
  display: none !important;
}
@media (min-width: 768px) {
  .hideSp {
    display: inherit !important;
  }
  .hidePc {
    display: none !important;
  }
}

.isSandbox:after{
  position: fixed;
  left: 0;
  bottom: 0;
  content: "SANDBOX";
  font-weight: bold;
  font-size: 20px;
  text-shadow: #666666 0 0 4px;
  color: #0000ff;
  padding: 0 10px;
  opacity: 0.5
}

/* TableWrap */
/*------------------------------------*/
.article-container .article-body .table-wrap{
  max-width: 100%;
  overflow-x: auto;
}
.article-container .article-body .table-wrap::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.article-container .article-body .table-wrap::-webkit-scrollbar-track {
  /*スクロールバーの軌道*/
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
}
.article-container .article-body .table-wrap::-webkit-scrollbar-thumb {
  /*スクロールバーの動く部分*/
  background-color: rgba(0, 0, 50, .5);
  border-radius: 10px;
  box-shadow:0 0 0 1px rgba(255, 255, 255, .3);
}
.article-container .article-body .table-wrap > table{
  width: 864px;
  margin-bottom: 3px;
}
.article-container .article-body .table-wrap > table th,
.article-container .article-body .table-wrap > table td{
  border: 1px solid #cccccc;
  padding: 5px;
}
.article-container .article-body .table-wrap > table th{
  background-color: #eeeeee;
}
@media (min-width: 768px) {
  .article-container .article-body .table-wrap > table{
    width: auto;
  }
}

/* Sandbox */
/*------------------------------------*/
.isSandbox:after{
  position: fixed;
  left: 0;
  bottom: 0;
  content: "SANDBOX";
  font-weight: bold;
  font-size: 20px;
  text-shadow: #666666 0 0 4px;
  color: #0000ff;
  padding: 0 10px;
  opacity: 0.5
}


/* Modal */
/*------------------------------------*/
.modal-area{
  position: fixed;
  top: 0;
  left :0;
  width :100vw;
  height: 100vh;
  background: rgba(0, 0, 0, .68);
  z-index: 20;
}

.modal-area .modal-frame {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 100%;
  height: auto;
  max-width: 80%;
  max-height: 80%;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 5px;
}
.modal-area .text{
  margin: 0;
}
.modal-area .buttons{
  text-align: center;
  margin-top: 30px;
}
.modal-area .buttons .button{
  display: inline-block;
  background-color: $brand_color;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 20px;
  line-height: 1;
  color: #ffffff;
  margin: 10px 0 0 0;
}
.modal-area .buttons .button:hover{
  opacity: 0.7;
}
.modal-area .buttons .button.close{
  background-color: #666666;
  border-color: #666666;
}

@media (min-width: 768px) {
  .modal-area .buttons .button{
    margin: 0 10px 0 10px;
    width: 160px;
  }
  .modal-area .modal-frame {  
    width: auto;
  }
}


/* Loading */
/*------------------------------------*/
.loader-area{
  position: fixed;
  top: 0;
  left :0;
  width :100vw;
  height: 100vh;
  background: rgba(0, 0, 0, .68);
  z-index: 20;
}
.loader-area .loader-frame {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 5em;
  height: 5em;
}
.loader-area .loader,
.loader-area .loader:after {
  border-radius: 50%;
  width: 100%;
  height: 100%;
}
.loader-area .loader {
  margin: 60px auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(0, 0, 0, 0.2);
  border-right: 1.1em solid rgba(0, 0, 0, 0.2);
  border-bottom: 1.1em solid rgba(0, 0, 0, 0.2);
  border-left: 1.1em solid #ffffff;
  transform: translateZ(0);
  animation: load8 1.1s infinite linear;
  margin: 0;
}

/* oad8 */
/*------------------------------------*/
@-webkit-keyframes load8 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Header */
/*------------------------------------*/
.isFixed .header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.isFixed .header.isScrolled {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
}
