@import url('https://fonts.googleapis.com/css2?family=DotGothic16&display=swap');
@import url('../font/2015-Cruiser.woff');

@font-face {
  font-family: 'Cruiser 2015';
  font-weight: 400;
  src: url('../font/2015-Cruiser.woff') format('woff');
}

html,body {
  font-family: 'DotGothic16', sans-serif;
  background-color: black;
  width: 100%;
  margin: 0;
  padding: 0;
}

* {
  color: #FFFFFF;
}

a {
  color: #21FF06;
}

a:hover {
  color: #20FFFF;
}


ul {
  margin-bottom: 0;
}

#canvas-wrap {
  width: 100%;
  height: 100%;
  min-height:100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
}

#body {
  top: 0;
  left: 0;
  height: 100vh;
  position: relative;
  z-index: 9999;
}

#footer {
  min-width: 100%;
  bottom: 0;
  left: 0;
  height: 6vh;
  position: fixed;
  z-index: 9999;
}

#content-wrapper {
  padding:  20px 20px 100px 20px;
}

.top-content {
  min-height: 100vh;
}

.company-logo-upper {
  font-family: 'Cruiser 2015';
  margin: 0;
  padding: 0;
}

.company-logo-lower {
  font-family: 'Cruiser 2015';
  margin: 0;
  padding: 0;
}

.content-box {
  color: #FFFFFF;
  margin-top: 50px;
}

.content-header {
  padding-bottom: 20px;
}

.content-text {
  font-size: 1.2rem;
}

.services img {
  max-height: 100px;
}

.aboutus {
  font-size: 1.2rem;
  border-collapse: collapse;
  margin-bottom: 60px;
}

.aboutus tbody, td, tfoot, th, thead, tr {
  border-style: none none dashed none !important;
}

.aboutus td:nth-of-type(1) {
  white-space: nowrap;
  font-weight: bold;
}

#go-top {
  position: fixed;
  bottom: 30px;
  right: 20px;
  transform: translate(0px, 0px);
}

#go-top img {
  width: 140px;
  object-fit: cover;
}

/**
 * Scroll Fade
 */
.scrollFade {
  opacity: 1;
  pointer-events: all;
}

.scrollFade--hidden {
  opacity: 0;
  pointer-events: none;
}

.scrollFade--visible {
  opacity: 1;
  pointer-events: all;
}

.scrollFade--animate {
  transition: opacity 0.4s ease-in-out;
}


/**
 * Responsive
 * /

/* ---------SP----------- */
@media only screen and (max-width: 767px){
  #header-logo {
    position: fixed;
    top: 20px;
    left:calc(50% - 140px/2);
  }

  #header-logo img {
    width:  140px;
    object-fit: cover;
  }

  #top-logo {
    padding-top: 25vh;
  }

  .company-logo-upper {
    font-size: 4rem;
  }

  .company-logo-lower {
    font-size: 1.70rem;
  }

  .aboutus td {
    padding: 10px 0;
  }

  .#go-top {
    visibility: hidden;
  }

}

/* ---------PC----------- */
@media only screen and (min-width: 768px), print {
  #header-logo {
    position: fixed;
    top: 20px;
    left: 4%;
  }

  #header-logo img {
    width:  120px;
    object-fit: cover;
  }

  #top-logo {
    padding-top: 35vh;
  }

  .company-logo-upper {
    font-size: 6rem;
  }

  .company-logo-lower {
    font-size: 2.5rem;
  }

  .aboutus td {
    padding: 20px 10px;
  }

}