@charset "Shift_JIS";

/* modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1100;
  box-sizing: border-box;
  display: none;
  width: 100%;
  height: 100%;
  margin: auto;
  overflow: auto;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal .modalLoadingCover {
  position: fixed;
  top: 0;
  z-index: 1200;
  display: none;
  width: 100%;
  height: 100%;
}

.modal .modalLoadingCover.isShow {
  display: block;
}

.modal .modalContent {
  position: relative;
  width: 600px;
  max-height: 100%;
  padding: 20px 0;
  margin: auto;
  overflow-y: auto;
}

.modal .modalLoading {
  position: absolute;
  z-index: 1210;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 4px;
}

.modal .modalLoading::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1220;
  display: inline-block;
  width: 48px;
  height: 48px;
  margin: auto;
  content: '';
  border: 4px solid #918b8a;
  border-top-color: transparent;
  border-radius: 50%;
  animation: rotating 1s linear 0s infinite;
}

@keyframes rotating {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.modal .modalLoading.isShow {
  display: block;
}

.modal .modalClose {
  position: absolute;
  top: 27px;
  right: 5px;
  z-index: 1100;
  width: 31px;
  overflow: hidden;
  font-size: 0;
  color: #fff;
  text-indent: -100%;
}

.modal .modalClose-icon {
  display: block;
  width: 24px;
  height: 24px;
  margin-bottom: 2px;
  margin-left: 4px;
  background: url('/dp/d/dpcom/dpcomcs/common/image/icon_closeround_gra.svg') center no-repeat;
  background-size: 16px;
}

.modal .modalClose-icon:hover {
  cursor: pointer;
}

.modal .modalContent-text {
  box-sizing: border-box;
  padding: 20px;
  line-height: 1.5;
  color: #3b1800;
  text-align: left;
  background-color: #fff;
  border-radius: 4px;
}

.modal .modalContent-text .title {
  font-weight: bold;
}

.modal .modalContent-text .content {
  margin-top: 14px;
}

.modal .modalContent-text .link {
  margin-top: 14px;
  font-size: 12px;
  text-align: right;
}

.modal .modalContent-text .link a:link {
  color: #1558ce;
}

.modal .modalContent-text .link a:visited {
  color: #7607f1;
}

/* showModal */
html.showModal,
body.showModal {
  position: fixed;
  width: 100%;
  overflow-y: scroll;
}

.showModal .modal {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* modalContentWrap */
.modalContentWrap {
  display: none;
}

/*
/* このファイルにはモーダル枠の style のみを定義しています。
/* モーダル内コンテンツの style は、画面に紐付く CSSファイル に定義してください。
*/