@import url(//fonts.googleapis.com/css?family=Lato:300:400);

/* global.css */
body {
  font-family: "Inter", hiragino-kaku-gothic-pron, sans-serif;
  font-style: normal;
  color: #575e77;
  letter-spacing: 0.05em;
}

/* 改行の無効化 */
.sp_br {
  display: none;
}

.indent {
  padding-left: 1.3rem;
}


header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 9999;
  background: transparent;

  .header-logo{
    height: 4rem;
    width: auto;
  }
}

.logo {
  width:50px;
  fill:white;
  padding-right:15px;
  display:inline-block;
  vertical-align: middle;
}

.inner-header {
  height:80vh;
  width:100%;
  margin: 0;
  padding: 0;
}

.flex { /*Flexbox for containers*/
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.waves {
  position:relative;
  width: 100%;
  height:15vh;
  margin-bottom:-7px; /*Fix for safari gap*/
  min-height:100px;
  max-height:150px;
}

.content {
  position:relative;
  height:20vh;
  text-align:center;
  background-color: white;
}

/* Animation */

.parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5)     infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}
@keyframes move-forever {
  0% {
   transform: translate3d(-90px,0,0);
  }
  100% { 
    transform: translate3d(85px,0,0);
  }
}

/* partner section */
.partner-logo-container {
  width: 60%
}

img.partner-logo {
  width: 200px;
  height: auto;
  object-fit: contain;
}

/* company section */

.company-section {
  dl {
    width: 60%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    text-align: left;
    margin-bottom: 2rem;
  }

  dt {
    width: 20%;
    margin: 0;
    border-bottom: 1px solid #ccc;
    font-weight: bold;
    line-height: 1.2rem;
    padding: 1.3em 1em 1em 0;
    vertical-align: middle;
    align-items: center;
  }

  dd {
    width: 80%;
    margin: 0;
    padding: 1em 1em 1em 0;
    border-bottom: 1px solid #ccc;
    vertical-align: middle;
    line-height: 2.7rem;
    line-height: 1.8;
  }
}


/* cta section */
.cta-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.highright {
  background: linear-gradient(transparent 40%, #FFE109 40%);
}

/* Shrinking for mobile */
@media (max-width: 768px) {
  .sp_br {
    display: block;
  }

  .indent {
    padding-left: 1rem;
  }
  

  .responsive-indent {
    padding-left: 1rem;
  }

  .waves {
    height:40px;
    min-height:40px;
  }
  .content {
    height:30vh;
  }

  header {
    .header-logo{
      height: 2rem;
      width: auto;
    }

    button{
      font-size: 0.8rem;
      padding-top: 0;
    }
  }

  .partner-logo-container {
    width: 90%
  }

  img.partner-logo {
    width: 140px;
    height: auto;
    object-fit: contain;
    display: flex;
    justify-content: center;
  }

  h2 {
    font-size: 1rem;
  }

  .company-section {
    dl {
      width: 90%;
    }
    dt {
      padding: 1em 1em 1em 0;
    }
  }

  footer p {
    font-size: 0.1rem;
  }
}
