.pressure{
  text-align: center;
  font-size: 1.4rem;
  color:#6F51A1;
  margin:1.4rem;
}

.license{
  text-align: center;
  font-size: 0.7rem;
  color:#000;
}

.contents h1{
   margin-bottom:2.5rem;
}

.contents-description p span{
  text-align: center;
  font-size: 1.4rem;
  color:#a15151;
  font-weight:600;
}

.contents-description p a{
  text-decoration: none;
}

.contents-description p a strong{
  text-decoration: underline;
}

.button-box a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 7.5% auto 2.5%;
    max-width: 240px;
    padding: 10px 25px;
    color: #fff;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    background: #659AD2;
    filter: drop-shadow(0px 2px 4px #ccc);
    border-radius: 3px;
    text-decoration:none;
}

.button-box a:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgb(0 0 0 / 15%), 0 0 5px rgb(0 0 0 / 10%);
}

.button-box a:after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(45deg) translateY(-48%);
    position: absolute;
    top: 48%;
    right: 20px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}

.contents-description .img-box{
  margin-top:10%;
}

/* レスポンシブ対応 */
@media screen and (max-width: 600px){
  .contents-description .img-box img{
    max-width: 100%;
  }
}

@media screen and (max-width: 820px) and (min-width:601px) {
  .pressure{
    font-size:1.2rem;
  }
}