#stage_complete {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(249, 84, 139, 0.9);
  z-index: 4999;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: 0.6s;
  -webkit-user-select: none;
  touch-action: none;
}

#stage_complete.on {
  visibility: visible;
  opacity: 1.0;
}

#stage_complete #close_stage_complete_btn {
  position: absolute;
  bottom: 24px;
  right: 0;
  left: 0;
  margin: auto;
}

#stage_complete .container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding: 50px;
}

#stage_complete .container > div {
  width: 50%;
  display: flex;
  box-sizing: border-box;
}

#stage_complete .container .visual {
  padding: 0 0 0 50px;
  align-items: center;
}

#stage_complete .container .visual img {
  display: block;
  width: 100%;
  height: auto;
}

#stage_complete .container .contents {
  padding: 0 50px;
  color: #fff;
  flex-direction: column;
}

#stage_complete .container .contents h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 60px;
  text-align: left;
  text-shadow: 0px 0px 8px #f5315f;
}

#stage_complete .container .contents .contents_body {
  font-size: 18px;
  line-height: 32px;
}

#stage_complete .container .contents .contents_body p {
  text-shadow: 0px 0px 8px #f5315f;
}

#stage_complete .container #cert_btn {
  width: 100%;
  height: 78px;
  color: #f9548b;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0px 0px 12px 6px rgba(245, 49, 95, 0.26);
  border-radius: 9px;
  margin-top: 60px;
  transition: 0.3s;
}

#stage_complete .container #cert_btn:hover {
  opacity: 0.8;
}

#cert_container {
  width: 100%;
  height: 100vh;
  background: #fffdf7;
  min-width: 1000px;
  min-height: 707px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-user-select: none;
  touch-action: none;
}

#cert_container #cert {
  width: 1000px;
  height: 707px;
  position: relative;
}

#cert_container #cert .base {
  display: block;
  width: 100%;
  height: auto;
}

#cert_container #cert .title,
#cert_container #cert .user_name,
#cert_container #cert .date {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}

#cert_container #cert .title {
  width: 723px;
  height: 112px;
  color: #b38b26;
  font-size: 46px;
  text-align: center;
  top: 148px;
}

#cert_container #cert .user_name {
  width: 529px;
  height: 92px;
  top: 345px;
  color: #5c460e;
  font-size: 57px;
}

#cert_container #cert .date {
  color: #5c460e;
  width: 144px;
  height: 28px;
  font-size: 20px;
  text-align: center;
  bottom: 102px;
  left: 124px;
  right: auto;
}
