*, *::after, *::before {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-transition: all .2s;
    transition: all .2s;
  }
  
  html, body {
    line-height: 1.5;
  }
  
  img {
    max-width: 100%;
    display: block;
  }
  
  body {
    font-family: 'Noto Sans', sans-serif;
    font-weight: bold;
  }
  
  .wrap {
    max-width: 1110px;
    margin: 0 auto;
  }
  
  .topBar {
    border-bottom: 40px solid #000000;
    margin-bottom: 30px;
  }
  
  .topBar .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  
  @media (max-width: 1110px) {
    .topBar .wrap {
      padding: 0 15px;
    }
  }
  
  .topBar a {
    display: block;
    text-decoration: none;
    color: #000000;
    font-size: 1.25rem;
  }
  
  .topBar a:hover {
    color: #6A33F8;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  
  .topBar-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    background-color: #FFFFFF;
  }
  
  .topBar-menu.openMenu {
    max-height: 300px;
  }
  
  .topBar-menu a {
    padding: 36px 24px;
    background-color: #FFFFFF;
  }
  
  .topBar-menu a:hover {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  
  .topBar-menu li:last-child a {
    padding-right: 0;
  }
  
  @media (max-width: 767px) {
    .topBar-menu {
      position: absolute;
      top: 61px;
      left: 0;
      right: 0;
      width: 100%;
      z-index: 10;
      max-height: 0;
      overflow: hidden;
      -webkit-transition: all .2s;
      transition: all .2s;
    }
    .topBar-menu li {
      width: 100%;
    }
    .topBar-menu a {
      text-align: center;
      padding: 15px;
      font-size: 1rem;
    }
    .topBar-menu a:hover {
      background-color: #6A33F8;
      color: #FFFFFF;
    }
    .topBar-menu li:last-child a {
      padding: 15px;
    }
  }
  
  .menuToggle {
    display: none;
    cursor: pointer;
  }
  
  .menuToggle:hover {
    color: #6A33FF;
  }
  
  @media (max-width: 767px) {
    .menuToggle {
      display: block;
      font-size: 2rem;
      padding: 15px;
    }
  }
  
  .logo {
    padding: 36px 0;
    font-size: 1.5rem;
  }
  
  @media (max-width: 767px) {
    .logo {
      padding: 15px;
    }
  }