#privacy-popup {
  font-size: 83%;
  z-index: 15;
  position: fixed;
  top: 100px;
  margin: 0 auto;
  left: 0;
  right: 0;
  border-radius: 5px;
  max-width: 580px;
  background: #fff;
  width: calc(100% - 40px);
}
.privacy-popup-inner {
  padding: 20px;
}
#privacy-popup .attention {
  text-align: center;
  font-size: 125%;
  font-weight: bold;
  color: #eb6100;
  margin: 0 0 15px;
}
a.privacy-popup-link {
  margin: 15px 0;
  display: inline-block;
}
 #privacy-popup dl {
  border: 1px solid #999;
  margin-bottom: 20px;
}
#privacy-popup dl a {
  padding: 10px 15px;
  display: block;
}
 #privacy-popup dl dt {
  font-size: 120%;
  font-weight: bold;
  padding-bottom: 5px;
  border-bottom: 1px dotted #ccc;
}
 #privacy-popup dl dd {
  padding-top: 5px;
}
a.privacy-popup-agree:hover {
  background: #fffe7a;
}
.privacy-popup-logout {
  text-align: right;
}
#privacy-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  content: '';
}
#privacy-popup-overlay.hide,
 #privacy-popup.hide {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.5s, opacity 0.5s;
}
