/* モーダルと背景の指定 */
#popup{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0,116,190,50%);
  padding: 40px 20px;
  overflow: auto;
  transition: .3s;
  box-sizing: border-box;
  z-index: 100;
}

/* モーダルの擬似要素の指定 */
#popup:before{
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  margin-left: -0.2em;
}

/* モーダル内側の指定 */
.popup-container{
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 660px;
  width: 94%;
}

/* モーダルを閉じるボタンの指定 */
#popup-close{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -20px;
  right: -20px;
  width: 40px;
  height: 40px;
  color: #fff;
  background: #0074BE;
  border-radius: 50%;
  cursor: pointer;
  transition: .3s;
}
#popup-close:hover{
  opacity: .7;
}

/* モーダルのコンテンツ部分の指定 */
.popup-content{
  background: #fff;
  text-align: left;
  line-height: 1.8;
  padding: 20px;
}

/* モーダルのコンテンツ部分のテキストの指定 */
.popup-content p{
  margin: 1em 0;
  font-family: HelveticaNeueeTextPro-Roman, sans-serif;
  
}

.popup-content p b{
  font-family: HelveticaNeueeTextPro-Bold, sans-serif;
  font-weight: 600;
}
.popup-content p a{
  color: #0074BE;
}
