@charset "UTF-8";
html, body {
  height: 100%;
}

html {
  font-size: 62.5%;
}

body {
  display: flex;
  flex-direction: column;
  font-family: "Noto Sans JP", Helvetica, YuGothic, "Yu Gothic", 游ゴシック体, 游ゴシック, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
}

main {
  flex: 1;
}

a:link {
  color: #000;
  text-decoration: underline;
}

a:hover {
  color: #000;
  text-decoration: none;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}

dl dt {
  font-weight: 400;
}

.container-600 {
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.full-width {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}
.site-header__logo {
  display: flex;
}
.site-header__img {
  width: 120px;
  color: #fff;
}

main.top-page {
  color: #fff;
  background: #4470b7;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  10% {
    opacity: 1;
    transform: translateX(0);
  }
  55% {
    opacity: 1;
    transform: translateX(0);
  }
  65% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 0;
    transform: translateX(-50px);
  }
}
.comingsoon__animation {
  display: inline-block;
  white-space: nowrap;
  font-size: 3.5rem;
}
.comingsoon__animation span {
  display: inline-block;
  opacity: 0;
  animation: fadeInOut 4.8s ease infinite;
  animation-fill-mode: both;
}
.comingsoon__animation span:nth-child(1) {
  animation-delay: 0s;
}
.comingsoon__animation span:nth-child(2) {
  animation-delay: 0.15s;
}
.comingsoon__animation span:nth-child(3) {
  animation-delay: 0.3s;
}
.comingsoon__animation span:nth-child(4) {
  animation-delay: 0.45s;
}
.comingsoon__animation span:nth-child(5) {
  animation-delay: 0.6s;
}
.comingsoon__animation span:nth-child(6) {
  animation-delay: 0.75s;
}
.comingsoon__animation span:nth-child(7) {
  animation-delay: 0.9s;
}
.comingsoon__animation span:nth-child(8) {
  animation-delay: 1.05s;
}
.comingsoon__animation span:nth-child(9) {
  animation-delay: 1.2s;
}
.comingsoon__animation span:nth-child(10) {
  animation-delay: 1.35s;
}
.comingsoon__animation span:nth-child(11) {
  animation-delay: 1.5s;
}

.profile-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 1;
}
.profile-hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-size: 110vw 110vh;
  background-repeat: no-repeat;
  opacity: 0.7;
  filter: blur(10px);
  transform: scale(1.2);
  z-index: -1;
  animation: backgroundSlide 10s ease infinite;
}
.profile-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.profile-hero__image {
  max-width: 280px;
  box-shadow: 0 0 2rem rgba(255, 255, 255, 0.3);
}
.profile-hero__name--jp {
  font-size: 2.4rem;
}
.profile-hero__name--en {
  font-weight: 200;
}
.profile-hero__email-button a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-decoration: none;
  transition: all 0.5s ease;
}
.profile-hero__email-button a svg {
  transition: all 0.5s ease;
}
.profile-hero__email-button a:hover svg {
  transform: scale(1.2);
}
.profile-hero__email-button a:hover:after {
  width: 55px;
  height: 55px;
  opacity: 0.5;
}
.profile-hero__email-button a:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease;
}
.profile-hero__scroll-button {
  position: absolute;
  bottom: 1rem;
}
.profile-hero__scroll-button a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  text-decoration: none;
  animation: float 2s ease-in-out infinite;
}
.profile-hero__text {
  font-size: 3rem;
}

@keyframes backgroundSlide {
  0% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
  100% {
    background-position: 0% center;
  }
}
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.profile-tabs {
  background: #fff;
  border-bottom: solid 1px #ccc;
}
.profile-tabs__inner {
  overflow-x: auto;
  overflow-y: hidden;
  text-align: center;
}
.profile-tabs__list {
  display: inline-flex;
}
.profile-tabs__link {
  position: relative;
  white-space: nowrap;
  padding: 1rem 2rem;
  text-decoration: none !important;
}
.profile-tabs__link:hover {
  text-decoration: none !important;
}
.profile-tabs__link:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) scaleX(0);
  width: 100%;
  max-width: 60px;
  height: 2px;
  background: #ccc;
  transform-origin: center;
  transition: none;
}
.profile-tabs__link.active:after {
  animation: bounce-scale 0.5s ease forwards;
}

@keyframes bounce-scale {
  0% {
    transform: translateX(-50%) scaleX(0);
  }
  50% {
    transform: translateX(-50%) scaleX(1.3);
  }
  70% {
    transform: translateX(-50%) scaleX(0.8);
  }
  100% {
    transform: translateX(-50%) scaleX(1);
  }
}
.profile-section {
  display: flex;
  flex-direction: column;
  min-height: calc(100lvh - 145px);
}
.profile-section__inner {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.profile-section__block {
  margin-top: auto;
}
.profile-section__field-title {
  border-left: solid 5px #ccc;
  padding-left: 1rem;
}
.profile-section__field-dl dt,
.profile-section__field-dl dd {
  border-bottom: solid 1px #ccc;
}
.profile-section__field-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.profile-section__field-video, .profile-section__field-embed {
  display: flex;
  align-items: center;
  justify-content: center;
}
.profile-section__field-video-player {
  width: auto;
  height: auto;
  max-height: 320px;
  max-width: 100%;
  display: block;
  object-fit: contain;
}
.profile-section__field-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9比率 = 9/16 = 0.5625 */
}
.profile-section__field-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.profile-section__field-document {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}
.profile-section__field-document canvas {
  width: 100%;
}
.profile-section__field-button {
  font-size: 1.4rem;
}
.profile-section__field-artwork {
  max-width: 120px;
}
.profile-section__field-audio-group .profile-section__field-title {
  padding: initial;
  border: initial;
}

.profile-sns {
  font-size: 2.5rem;
}

main.error-page {
  color: #fff;
  background: #4470b7;
}

.hover-opacity {
  opacity: 1;
  transition: opacity 0.3s ease;
}
.hover-opacity:hover {
  opacity: 0.7;
}

.hover-zoom {
  display: block;
  transform: scale(1);
  transition: transform 0.3s ease;
}
.hover-zoom:hover {
  transform: scale(1.3);
}

/*# sourceMappingURL=style.css.map */