@charset "Utf-8";
body {
  height: 820px;
}
/* TOP上部の囲い */
.content-top__wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
  padding-top: 50px;
}
/* トップ左 */
.content-left {
  /* background-color: #6a67fc; */
  width: 60%;
  font-size: clamp(5.5px, 15vw, 70px);
  line-height: normal;
  color: #ffc43c;
  /* display: flex;
  align-items: flex-end; */
  align-self: flex-end;
}

.title-text-type.is-hide {
  opacity: 0;
}

.TextTyping span {
  display: none;
}

/*文字列後ろの線の設定*/
.TextTyping::after {
  content: "|";
  animation: typinganime 0.8s ease infinite;
}

@keyframes typinganime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* トップ右 */
.content-right {
  /* background-color: #67fc91; */
  padding: 90px 20px 0px;
}
.logo-image {
  text-align: center;
}
.logo-image img {
  width: 100%;
  height: 45vh;
}
@media (max-width: 830px) {
  main {
    margin-bottom: 60px;
  }
  .content-top__wrapper {
    flex-direction: column-reverse;
  }
  .content-right {
    padding: 0;
    margin: 150px auto 70px;
  }
  .logo-image img {
    height: 100%;
    width: 50%;
  }
  .content-left {
    width: 100%;
    line-height: 6rem;
    justify-content: center;
  }
}
/* トップ下部ボタン */
/* .top-button {
  background-color: blueviolet;
} */
.top-button {
  font-size: 2.2rem;
  font-weight: 600;
}
.top-button p {
  margin-bottom: 20px;
}
.button-wrapper {
  display: flex;
}
.WORKS-button {
  padding: 30px 30px 0 60px;
  display: flex;
  color: #404040;
}
.WORKS-button:hover {
  color: #e37c88;
}
.PROFILE-button {
  padding: 30px 60px 0 30px;
  display: flex;
  color: #404040;
}
.PROFILE-button:hover {
  color: #e37c88;
}
.arrow {
  display: flex;
  align-items: center;
}
.arrow img {
  width: 36px;
}
@media (max-width: 830px) {
  .top-button {
    font-size: 2.6rem;
  }
  .button-wrapper {
    display: block;
  }
  .WORKS-button {
    padding: 20px 0;
    margin-bottom: 5px;
  }
  .PROFILE-button {
    padding: 20px 0;
  }
}
