.c-modal {
  position: fixed;
  top: calc(50% + 15px);
  left: 50%!important;
  z-index: 220;
  background: #fff;
  width: 500px;
  padding: 10px 0;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

@media screen and (max-width: 768px) {
  .c-modal {
    width: 90%;
  }
}

.c-modal.-fullHeight {
  height: 70%;
}
@media screen and (max-width: 768px) {
  .c-modal.-fullHeight {
    height: auto;
  }
}

.c-modal__close {
  display: block;
  position: absolute;
  bottom: 100%;
  right: 0;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.c-modal__close::before,
.c-modal__close::after {
  content: "";
  display: block;
  background: #fff;
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 3px;
  height: 15px;
}

.c-modal__close::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.c-modal__close::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.c-modal__header {
  position: relative;
}

.c-modal__body {
  height: auto;
}

.c-modal__body.scroll-area {
  height: 420px;
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

@media screen and (max-width: 768px) {
  .c-modal__body.scroll-area {
    height: 300px !important;
  }
}

.c-modal__body.scroll-area::-webkit-scrollbar {
  display: none;
}

.c-modal__bg {
  position: fixed;
  top: 0;
  z-index: 210;
  background: rgba(0, 0, 0, 0.75);
  width: 100%;
  height: 100%;
}
.c-modal__bg.-lighten {
  background: rgba(0, 0, 0, 0.3);
}
.notice_message {
  font-size: 1.4rem;
  text-align: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 300;
  background-color: rgba(19, 29, 52, 0.8);
  color: #fff;
  width: auto;
  min-width: 290px;
  height: auto;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 6px 18px rgba(24, 125, 177, 0.2);
  /*opacity: 0.8%;*/
}

.notice_message div {
  display: table;
  width: 100%;
  height: 100%;
}

.copyable {
  cursor: pointer;
  position: relative; /* 相対位置 */
}
.copied-msg {
  position: absolute;
  background-color: rgb(220, 93, 51);
  color: #fff;
  border-radius: 1px;
  padding: 3px;
  z-index: 1000;
}
/* position: relative;  */
/* pointer-events: none; */
.c-balloon {
  position: absolute;
  pointer-events: auto;
  color: #062037;
  font-size: 1.4rem;
  font-weight: 500;
  white-space: nowrap;
  z-index: 220;
  background: #fff;
  padding: 8px 5px;
  border-radius: 3px;
  box-shadow: 0 0 10px 0 rgba(0, 91, 172, 0.5);
  cursor: pointer;
  max-width: 450px;
  white-space: normal;
  word-wrap: break-word;
}
.c-balloon__wrap {
  position: relative;
}
.c-balloon .buttons {
  text-align: center;
  margin-top: 10px;
}
.c-balloon .buttons .c-btn {
  width: 70px;
}
.c-balloon .buttons .c-btn + .c-btn {
  margin-left: 5px;
}
.c-balloon::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
}
.c-balloon.-warning::before {
  content: "";
  display: block;
  background: url(../img/icon_warning.svg) no-repeat top center/25px 25px;
  width: 25px;
  height: 25px;
  margin: 0 auto 5px;
}
.c-balloon.-caution::before {
  content: "";
  display: block;
  background: url(../img/icon_caution.svg) no-repeat top center/25px 25px;
  width: 25px;
  height: 25px;
  margin: 0 auto 5px;
}
.c-balloon.-left::after {
  left: calc(100% - 1px);
  border-width: 8px 0 8px 10px;
  border-color: transparent transparent transparent #ffffff;
}
.c-balloon.-right::after {
  right: calc(100% - 1px);
  border-width: 8px 10px 8px 0;
  border-color: transparent #ffffff transparent transparent;
}
.c-balloon.-top::after {
  position: relative;
  bottom: -15px;
  left: 50%;
  margin-left: -8px;
  border-width: 10px 8px 0 8px;
  border-color: #fff transparent transparent transparent;
}
.c-balloon.-bottom::after {
  top: -5px;
  left: 50%;
  margin-left: -8px;
  border-width: 0 8px 10px 8px;
  border-color: transparent transparent #fff transparent;
}

/*-----------------------------------------------
   tooltip */
.c-tooltip {
  position: absolute;
  cursor: move;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
  font-size: 1.1rem;
  border-radius: 3px;
  /* opacity: 0.9; */
  color: #062037;
  font-weight: 500;
  white-space: nowrap;
  position: absolute;
  z-index: 220;
  background: #fff;
  padding: 5px 10px;
  box-shadow: 0 0 20px 0 rgba(0, 91, 172, 0.5);
  cursor: pointer;
}
.c-balloon.-bottomCenter {
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.c-balloon.-bottomCenter::after {
  display: none;
}
.js_tooltip {
  cursor: pointer;
}
