@keyframes typing {
  from {
    width: 0;
  }
}
@keyframes caret {
  50% {
    border-color: transparent;
  }
}
@keyframes border-animation {
  0% {
    transform: translate(0, 0) rotate(-7deg);
  }
  50% {
    transform: translate(0, -7px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(7deg);
  }
}
* {
  margin: 0px;
  padding: 0px;
}

body {
  background-color: #fdfdfd;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "sans-serif";
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  margin: 0 auto;
  text-align: center;
}

.title {
  width: 100px;
  background-color: #333;
  padding: 12px 20px;
  position: fixed;
  top: 5px;
  left: 5px;
  z-index: 1000;
  box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.1);
}

.title__text {
  font-weight: 400;
  color: #fff;
}

.top-header {
  padding-top: 70px;
}
.top-header h1 p {
  width: 21ch;
  margin: 30px auto;
  font-size: 1.25rem;
  border-right: 0.08em solid;
  animation: typing 3s steps(14, end), caret 0.3s step-end infinite;
  overflow: hidden;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.top-header > p {
  padding: 30px;
  align-items: center;
  margin: 30px auto;
  border-radius: 4px;
  background-color: #f4f4f4;
  color: #000;
}

.page-header {
  margin-bottom: 45px;
}

.page-concept {
  padding-bottom: 100px;
  max-width: 700px;
  margin: 0 auto;
}
.page-concept > p {
  font-size: 15px;
  line-height: 2.2;
  letter-spacing: 0.11em;
  margin-top: 60px;
}

.top-concept {
  margin: 80px 0px;
  padding: 80px 0px;
  z-index: 0;
  display: grid;
  place-items: center;
  background: #f4f4f4;
  -webkit-clip-path: polygon(0 8vw, 100% 0, 100% calc(100% - 8vw), 0 100%);
          clip-path: polygon(0 8vw, 100% 0, 100% calc(100% - 8vw), 0 100%);
}

.page-service {
  max-width: 700px;
  margin: 0 auto;
}

.service__heading {
  text-align: center;
}

.top-about {
  margin: 80px 0px;
  padding: 100px 0px;
  z-index: 0;
  display: grid;
  place-items: center;
  background: #f4f4f4;
  -webkit-clip-path: polygon(0 0, 100% 8vw, 100% 100%, 0 calc(100% - 8vw));
          clip-path: polygon(0 0, 100% 8vw, 100% 100%, 0 calc(100% - 8vw));
}

.page-about {
  padding-bottom: 100px;
  max-width: 240px;
  margin: 0 auto;
}
.page-about > p {
  font-size: 15px;
  line-height: 2.2;
  letter-spacing: 0.11em;
}

.logo-icon {
  height: 20px;
  margin-right: 5px;
  margin-bottom: -5px;
}

.programming-language {
  display: block;
  margin-bottom: 30px;
}

.programming-framework {
  display: block;
}

.delimiter {
  color: #999;
  padding: 0px 10px;
}

.line-title {
  font-weight: 700;
  padding-right: 15px;
}

.top-contact {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.heading-en {
  margin-top: 105px;
  display: block;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0.1em;
  -webkit-font-smoothing: subpixel-antialiased;
  letter-spacing: 0.25em;
  text-indent: 0.25em;
}

.heading-sub-ja {
  display: block;
  margin-top: 8px;
  font-weight: 500;
  font-size: 15px;
  line-height: 2.2;
  letter-spacing: 0.11em;
  margin-top: 10px;
}

.page-contact {
  margin-bottom: 50px;
}

.ml {
  display: inline-block;
  margin-top: 15px;
  font-weight: 900;
}

.footer-info {
  padding-right: 5px;
}

.copyright {
  text-align: right;
  font-size: 0.5rem;
  color: #555;
}

.circle {
  color: #fff;
  padding: 5%;
  width: 20%;
  height: 100px;
  margin: 0 -15px;
  mix-blend-mode: multiply;
  box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
  vertical-align: middle;
  line-height: 1.2;
  transition: 1s;
}
.circle:hover {
  width: 27%;
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
}
.circle > h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.circle-1 {
  background: #3FC478;
  border-radius: 50% 50% 50% 70%/50% 55% 75% 65%;
}

.scroll-in {
  opacity: 1 !important;
  transform: translate(0, 0);
}
.scroll-in .circle-1 {
  animation: border-animation 1s infinite linear;
  animation-delay: 1s;
  animation-iteration-count: 1;
}
.scroll-in .circle-2 {
  animation: border-animation 1s infinite linear;
  animation-delay: 2s;
  animation-iteration-count: 1;
}
.scroll-in .circle-3 {
  animation: border-animation 1s infinite linear;
  animation-delay: 3s;
  animation-iteration-count: 1;
}
.scroll-in .circle-4 {
  animation: border-animation 1s infinite linear;
  animation-delay: 4s;
  animation-iteration-count: 1;
}
.scroll-in .circle-5 {
  animation: border-animation 1s infinite linear;
  animation-delay: 5s;
  animation-iteration-count: 1;
}

.circle-2 {
  background: #FCA91B;
  border-radius: 80% 30% 50% 50%/50%;
}

.circle-3 {
  background: #FF5ABD;
  border-radius: 40% 40% 50% 40%/30% 50% 60% 70%;
}

.circle-4 {
  background: #2D3A6C;
  border-radius: 40% 40% 50% 40%/30% 70% 40% 50%;
}

.circle-5 {
  background: #53ABDE;
  border-radius: 40% 40% 50% 40%/30% 60% 50% 70%;
}

.div-circle {
  display: flex;
  justify-content: center;
  padding: 40px;
}

.pc {
  display: inline;
}

.sp {
  display: none;
}

.fade-in {
  opacity: 0;
  transition-duration: 1s;
  transition-property: opacity, transform;
}

.fade-in-up {
  transform: translate(0, 50px);
}

.fade-in-down {
  transform: translate(0, -50px);
}

.fade-in-left {
  transform: translate(-50px, 0);
}

.fade-in-right {
  transform: translate(50px, 0);
}

@media (max-width: 900px) {
  body {
    font-size: 0.9rem;
  }
  .top-header {
    padding-top: 50px;
  }
  .title {
    position: relative;
  }
  header {
    padding: 0px 10px;
  }
  .page-concept > p {
    padding-left: 10px;
    padding-right: 10px;
  }
  .page-service {
    padding: 0px 10px;
  }
  .content-service .heading-en {
    margin-top: 50px !important;
  }
  .div-circle {
    padding: 40px 0px;
    font-size: 0.5rem;
  }
  .circle {
    padding: 15px 5px;
    height: 80px;
    line-height: initial;
    width: 26%;
  }
  .circle > h3 {
    font-size: 0.7rem;
  }
  .circle:hover {
    font-size: 0.6rem;
  }
  .circle-2 {
    margin-top: 70px;
  }
  .circle-4 {
    margin-top: 70px;
  }
  .pc {
    display: none;
  }
  .sp {
    display: inline;
  }
  .programming-language {
    font-size: 0.5rem;
  }
  .programming-framework {
    font-size: 0.5rem;
  }
  .delimiter {
    padding: 0;
  }
  .logo-icon {
    height: 10px;
    margin-right: 2px;
    margin-bottom: -2px;
  }
}/*# sourceMappingURL=style.css.map */