#policy-popup {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90vw;
  height: 60vh;
  transform: translate(-50%, -50%);
  overflow: hidden;
  background-color: #242527;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 0 160px 12px rgba(0, 0, 0, 0.95);
}
#policy-popup .title-area {
  display: flex;
  flex-direction: row;
  padding: 12px;
  box-shadow: 0 3px 18px rgba(0,0,0,.5);
}
#policy-popup .title-area .title {
  flex: 1;
  line-height: 40px;
  text-align: center;
  font-weight: bold;
}
#policy-popup .title-area .close-button-area {
  position:absolute;
  right: 12px;
  top: 12px;
  align-items: flex-end;
}
#policy-popup .title-area .close-button-area button {
  width: 40px;
  height: 40px;
  background-color: transparent;
  background-image: url(../img/ic-close-w.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

#policy-popup .body {
  padding: 24px;
  height: calc(60vh - 132px);
  overflow: hidden auto;
}

#policy-popup .body .contents {
  overflow: hidden;
}
#policy-popup .body .title {
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.26;
  margin-bottom: 24px;
  color: rgb(195, 198, 206);
}

#policy-popup .body .sub-title {
  margin-top: 20px;
  margin-bottom: 4px;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.3;
}

#policy-popup .body p {
  line-height: 1.6;
  color: #f5f5f5;
}