.blocker {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 9999;
  padding: 50px 0px;
  box-sizing: border-box;
  text-align: center;
    background: rgba(0, 0, 0, .5);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.blocker:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.05em
}



.modal {
  display: none;
  vertical-align: middle;
  position: relative;
  z-index: 999999999;
  max-width: 940px;
  box-sizing: border-box;
  width: 80%;
  background: #000;
  text-align: left;
color: #fff;
}



.modal-inner{
    padding: 60px 40px;
    border-left: solid 2px #f3a624;
    border-right: solid 2px #f3a624;
    position: relative;
}
.modal-inner:before{
    content: "";
    display: block;
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:2px;
    background: linear-gradient(90deg, #f3a624 0% 10%, #f8ea90 50%, #f3a624 90% 100%);
}
.modal-inner:after{
    content: "";
    display: block;
    position: absolute;
    bottom:0;
    left:0;
    width:100%;
    height:2px;
    background: linear-gradient(90deg, #f3a624 0% 10%, #f8ea90 50%, #f3a624 90% 100%);
}

.modal figure{
    max-width: 480px;
    margin: 0 auto 20px;
}
.modal h3{
    text-align: center;
    font-weight: 700;
    font-size: 40px;
    margin-bottom: 20px;
}

.modal h4{
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    text-align: center;
}

.modal h4 span{
    background: #000;
    position: relative;
    z-index: 2;
}


.comment{
    margin-top: 28px;
    border-top: solid 1px rgba(255,255,255,.5);
    padding-top: 28px;
}

.profile p,.comment p{
    line-height: 1.6;
    text-align: justify;
    word-break:break-all;
}
.profile p a,.comment p a{
    text-decoration: underline;
}
.profile strong,.comment strong{
     background: url(../img/about-ttl.svg) no-repeat;
    background-position: center;
    display: block;
    text-align: center;
    font-size: 20px;
    margin-bottom: 12px;
}
.modal a.close-modal {
  position: absolute;
  top: -20px;
  right: -20px;
  display: block;
  width: 60px;
  height: 60px;
  text-indent: -9999px;
    background: url(../img/modal-close.svg);
    background-size: 100% 100%;
    background-position: center;
    transition-duration: 0.2s;
    
}

.modal a.close-modal.hover{
    transform: scale(1.1);
    filter: brightness(1.4);
}


@media screen and (max-width: 896px){
    .modal-inner{
    padding: 40px 20px;
}
.modal h3{
    text-align: center;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 20px;
}
    
.profile strong,.comment strong{
    font-size: 16px;
    margin-bottom: 10px;
}
    .profile p,.comment p{
        font-size: 12px;
    }


    
}