#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #f6e2b6;
  text-align: center;
}

#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 150px;
}

#splash_logo img {
  width: 100%;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.firstview {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.firstview__balloon {
  position: relative;
  display: inline-block;
  background-color: #fff;
  border-bottom: solid 2px #333;
  padding: 16px;
  min-width: 240px;
  max-width: 100%;
  margin-bottom: 48px;
  text-align: center;
}
.firstview__balloon::before, .firstview__balloon::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.firstview__balloon::before {
  border: solid 12px transparent;
  border-top: solid 12px #333;
}
.firstview__balloon::after {
  border: solid 14px transparent;
  border-top: solid 14px #fff;
  margin-top: -5px;
}
.firstview__balloon h1 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  padding: 0;
}

.firstview__portfolio-image {
  max-width: 1200px;
  height: auto;
}

.portfolio {
  width: 100%;
}

.firstview__scrolldown {
  position: absolute;
  bottom: 32px;
  right: 0;
  width: 65px;
}

@media (max-width: 768px) {
  #splash_logo {
    max-width: 100px;
  }
  .firstview__balloon h1 {
    font-size: 16px;
  }
  .firstview__scrolldown {
    bottom: 24px;
    right: 16px;
    width: 45px;
  }
}
.profile-inner {
  display: flex;
  align-items: center;
  gap: 10%;
}

.profile-inner__caption p {
  font-size: 16px;
  line-height: 1.5em;
  margin: 32px 0;
}

.profile-inner__profile-image {
  text-align: center;
}
.profile-inner__profile-image h3 {
  display: none;
}
.profile-inner__profile-image p {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}
.profile-inner__profile-image p::before, .profile-inner__profile-image p::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 16px;
  background-color: #333;
  bottom: 0;
}
.profile-inner__profile-image p::before {
  left: -16px;
  transform: rotate(-45deg);
}
.profile-inner__profile-image p::after {
  right: -16px;
  transform: rotate(45deg);
}
.profile-inner__profile-image img {
  max-width: 360px;
  width: 80%;
}

.pc-none {
  display: none;
}

@media (max-width: 768px) {
  .profile-inner {
    flex-direction: column-reverse;
  }
  .profile-inner__caption p {
    font-size: 14px;
    max-width: 600px;
    margin: 24px 0;
  }
  .profile-inner__caption h3 {
    display: none;
  }
  .profile-inner__profile-image {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .profile-inner__profile-image p {
    font-size: 14px;
  }
  .profile-inner__profile-image p::before, .profile-inner__profile-image p::after {
    height: 14px;
  }
  .profile-inner__profile-image img {
    width: 70%;
  }
  .pc-none {
    display: block;
    margin-bottom: 32px;
  }
}
.view-more a:hover::after {
  border-color: #333;
}

.view-more-orange a:hover {
  background: #FF6E24;
}

.view-more-red a:hover {
  background: #F54645;
}

.view-more-green a:hover {
  background: #358C3E;
}

.view-more-pink a:hover {
  background: #FE94D4;
}

.view-more-black a {
  background: #333;
  color: #fff;
  margin: 0 auto;
}
.view-more-black a:hover {
  background-color: #fff;
  color: #333;
}
.view-more-black a::after {
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}
.view-more-black-complement {
  text-align: center;
}
.view-more-black-complement p {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}
.view-more-black-complement p::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 16px;
  background-color: #333;
  left: -16px;
  bottom: 0;
  transform: rotate(-45deg);
}
.view-more-black-complement p::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 16px;
  background-color: #333;
  right: -16px;
  bottom: 0;
  transform: rotate(45deg);
}

.works__container {
  margin-bottom: 56px;
}
.works__container:last-child {
  margin-bottom: 0;
}

.works__container--site-name {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 16px;
}
.works__container--site-name::before {
  content: "";
  position: absolute;
  background: #333;
  width: 300px;
  height: 1px;
  left: -330px;
  top: 12px;
}

.works__container h4 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-top: 16px;
  margin-bottom: 32px;
}

.works__content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 5%;
}
.works__content--img {
  max-width: 600px;
}
.works__content--img img {
  width: 100%;
  border: solid 2px #333;
}
.works__content--caption p {
  margin-bottom: 32px;
  line-height: 1.5em;
}

@media (max-width: 768px) {
  .works__container h4 {
    margin-top: 14px;
    margin-bottom: 24px;
  }
  .works__content {
    flex-direction: column;
  }
  .works__content--img {
    margin-bottom: 24px;
  }
  .works__content--caption p {
    font-size: 14px;
    max-width: 600px;
    margin-bottom: 24px;
  }
  .reverse {
    flex-direction: column-reverse;
  }
}/*# sourceMappingURL=top.css.map */