@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&family=Noto+Serif+JP:wght@300;400;500;600;700;900&family=Zen+Maru+Gothic:wght@400;500;700;900&family=M+PLUS+1+Code:wght@300;400;500;600;700&display=swap");
/* loading
===================================== */
.itmar_loading {
  font-size: clamp(4.5px, 0.52vw, 15px);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.7;
  z-index: 100;
}
.itmar_loading.body {
  position: fixed;
}
.itmar_loading .loadingMsg {
  position: absolute;
  color: #eee;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
}
.itmar_loading .loading_icon {
  box-sizing: border-box;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  position: absolute;
  top: -80%;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 -30px 0 #eee, 21px -21px 0 #ddd, 30px 0 0 #ccc, 21px 21px 0 #bbb, 0 30px 0 #aaa, -21px 21px 0 #999, -30px 0 0 #666, -21px -21px 0 #000;
  /* 左上 */
  -webkit-animation: load_rotate 1s steps(8) 0s infinite;
          animation: load_rotate 1s steps(8) 0s infinite;
}

/* result msg
===================================== */
#result_msg {
  font-size: clamp(12px, 1.2vw, 25px);
  position: fixed;
  display: none;
  left: 50%;
  transform: translateX(-50%);
  top: 15em;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 1em 2em;
  color: #fff;
  z-index: 70;
}
@media (max-width: 767px) {
  #result_msg {
    font-size: 2.5641025641vw;
    padding: 1em;
  }
}

/* modalバックグラウンド
===================================== */
.modal_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #5c5c5c;
  opacity: 0.8;
  z-index: 40;
  display: none;
}
.modal_bg.white {
  opacity: 0.9;
  background-color: #fff;
}

/* keyframes
===================================== */
@-webkit-keyframes load_rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes load_rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*# sourceMappingURL=sns_common.css.map */