/*
.popup_wrap input {
  display: none;
}

.popup_trigger {
  position: absolute;
  width: 100%;
  height: 100%;
}

.close_btn {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 30px;
  cursor: pointer;
  color:#00358e;
}
*/
.popup_overlay {
  display: flex;
  justify-content: center;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: #676a793d;
  
}

.popup_content {
  position: relative;
  align-self: center;
  width: 75%;
  max-width: 800px;
  max-height: 520px;
  min-height: 290px;
  box-sizing: border-box;
  background: #fff;
  line-height: 1.4em;
  transition: 0.5s;
  border-radius: 12px;
  box-shadow: 0 0 5px rgba(94, 94, 94, 0.7);
  text-align: center;
  padding: 45px;
}

@media (max-width: 767px) {
  .popup_content {
    min-height: 330px;
    padding: 50px 5px;
  }
}

.popup_content p{
    padding:0px 10px 0px 10px;
    margin:0px;
}

@media (max-width: 767px) {
  .popup_sentence {
    text-align: left;
  }
}

.popup_wrap input:checked ~ .popup_overlay {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s;

}

.popup_btn{
  margin:10px;
}

.open_btn {
    background: #00358e;
    color: #fff;
    border-radius: 3px;
    cursor: pointer;
    transition: .3s ease;
    border:1px solid #00358e;
    padding:10px 30px;
    font-weight: bold;
    letter-spacing: 0.10em;
  }
.open_btn a{
  text-decoration: none;
  color: #fff;
}

.open_btn:hover{
    background:#fff;
    color:#00358e;
    transition: .3s ease;
}

.open_btn:hover a{
    color:#00358e;
}

.br-sp {
  display: none;
}

@media (max-width: 767px) {
  .br-sp {
    display:block;
  }
}