  section::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 80%;
  }
  section h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    
    /*color: #fff;    
    font : normal 300 64px/1 'Josefin Sans', sans-serif;
    */
    text-align: center;
    white-space: nowrap;
  }
  
  .scroll-button a {
    position: absolute;
    bottom: 20px;
    left: 50%;
    z-index: 2;
    display: inline-block;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    /*
    color: #fff;*
    font : normal 400 20px/1 'Josefin Sans', sans-serif;
    letter-spacing: .1em;
    text-decoration: none;
    */
    transition: opacity .3s;
  }
  .scroll-button a:hover {
    opacity: .5;
  }
  
  #section02 a {
    padding-top: 60px;
  }
  #section02 a span {
    position: absolute;
    top: 0;
    left: 50%;
    width: 46px;
    height: 46px;
    margin-left: -23px;
    /*border: 1px solid #fff;*/
    border: 1px solid #DD356E;
    border-radius: 100%;
    box-sizing: border-box;
  }
  #section02 a span::after {
    
    position: absolute;
    
    top: 50%;
    left: 50%;
    
    content: '';
    
    width: 16px;
    height: 16px;
    
    margin: -12px 0 0 -8px;
    /*
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
    */
    border-left: 1px solid #DD356E;
    border-bottom: 1px solid #DD356E;

    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);

    box-sizing: border-box;

  }