@charset "UTF-8";
@keyframes mainImg-animation {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@keyframes star-animation {
  0% {
    transform: rotate(310deg) translateX(0);
    opacity: 1;
  }
  85% {
    opacity: 0;
  }
  100% {
    transform: rotate(310deg) translateX(-100vw);
    opacity: 0;
  }
}
@keyframes scroll-animation {
  0% {
    transform: translate(-50%, 0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 80%);
    opacity: 0;
  }
}
html {
  /* 1rem = 約16px → 10px */
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", Arial, sans-serif;
  font-family: "Noto Sans JP";
  font-size: 1.6rem;
  color: #eee;
  font-style: normal;
  line-height: 1;
}
body.nav-open {
  overflow: hidden;
  width: 100%;
}
@media (width >= 768px) {
  body {
    font-size: 2.08rem;
  }
}
@media (width >= 1440px) {
  body {
    font-size: 2.4rem;
  }
}

img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

a {
  display: inline-block;
  width: 100%;
  height: 100%;
}

.panels {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
}
.panels .panel__container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  aspect-ratio: 1;
  height: auto;
  width: 351px;
}
.panels .panel__container .section__header {
  width: 100%;
  height: 83px;
  background: url(../images/sectionHeaderImg.png) center/cover no-repeat;
  position: relative;
}
.panels .panel__container .section__header .sectionHeader__num,
.panels .panel__container .section__header .sectionHeader__txt {
  font-size: 2.4rem;
}
.panels .panel__container .section__header .sectionHeader__num {
  color: #00adff;
  font-weight: 700;
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
}
.panels .panel__container .section__header .sectionHeader__txt {
  position: absolute;
  top: 50%;
  right: 90px;
  transform: translateY(-50%);
}
@media (width >= 768px) {
  .panels .panel__container {
    gap: 15.6px;
    width: 456.3px;
  }
  .panels .panel__container .section__header {
    height: 107.9px;
  }
  .panels .panel__container .section__header .sectionHeader__num,
  .panels .panel__container .section__header .sectionHeader__txt {
    font-size: 3.12rem;
  }
  .panels .panel__container .section__header .sectionHeader__num {
    position: absolute;
    top: 50%;
    left: 52px;
    transform: translateY(-50%);
  }
  .panels .panel__container .section__header .sectionHeader__txt {
    position: absolute;
    top: 50%;
    right: 117px;
    transform: translateY(-50%);
  }
}
@media (width >= 1440px) {
  .panels .panel__container {
    gap: 18px;
    width: 526.5px;
  }
  .panels .panel__container .section__header {
    height: 124.5px;
  }
  .panels .panel__container .section__header .sectionHeader__num,
  .panels .panel__container .section__header .sectionHeader__txt {
    font-size: 3.6rem;
  }
  .panels .panel__container .section__header .sectionHeader__num {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
  }
  .panels .panel__container .section__header .sectionHeader__txt {
    position: absolute;
    top: 50%;
    right: 135px;
    transform: translateY(-50%);
  }
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100vw;
  height: 55px;
  padding: 0 3.2%;
  background: #000;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
.header .header__title,
.header .header__list > .header__item > .header__txt {
  color: #00adff;
}
.header .header__title {
  font-size: 2.4rem;
}
.header .header__list {
  display: none;
}
@media (width >= 768px) {
  .header {
    height: 71.5px;
  }
  .header .header__title {
    font-size: 3.12rem;
  }
  .header .header__list {
    display: flex;
    gap: 31.2px;
  }
}
@media (width >= 1440px) {
  .header {
    height: 82.5px;
  }
  .header .header__title {
    font-size: 3.6rem;
  }
  .header .header__list {
    display: flex;
    gap: 36px;
  }
}

.headerBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 31px;
  background: url(../images/headerBtnImg.png) center/cover no-repeat;
  cursor: pointer;
  pointer-events: all;
  position: fixed;
  top: 12px;
  right: 3.2%;
  z-index: 102;
}
.headerBtn .headerBtn__line {
  width: 20px;
  border: 1px solid #00adff;
  position: absolute;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.headerBtn .headerBtn__line:nth-child(1) {
  transform: translateY(-6px);
}
.headerBtn .headerBtn__line:nth-child(2) {
  transform: translateY(0);
}
.headerBtn .headerBtn__line:nth-child(3) {
  transform: translateY(6px);
}
.headerBtn.active .headerBtn__line:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}
.headerBtn.active .headerBtn__line:nth-child(2) {
  opacity: 0;
}
.headerBtn.active .headerBtn__line:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}
@media (width >= 768px) {
  .headerBtn {
    display: none;
  }
}
@media (width >= 1440px) {
  .headerBtn {
    display: none;
  }
}

.nav {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -100;
  opacity: 0;
  pointer-events: none;
}
.nav.show {
  background: rgba(0, 0, 0, 0.8705882353);
  z-index: 101;
  opacity: 1;
  pointer-events: auto;
}
.nav .nav__list {
  margin-top: 79px;
}
.nav .nav__list .nav__item .nav__txt {
  padding: 24px 0;
  font-size: 2.4rem;
  text-align: center;
}
.nav .nav__list .nav__item:hover {
  background: #00adff;
}

.footer {
  width: 100vw;
  padding: 12px 0;
  background: #000;
  position: fixed;
  bottom: 0;
  left: 0;
}
.footer .copy {
  font-size: 1rem;
  text-align: center;
  color: #c4c4c4;
}
@media (width >= 768px) {
  .footer {
    padding: 15.6px 0;
  }
  .footer .copy {
    font-size: 1.3rem;
  }
}
@media (width >= 1440px) {
  .footer {
    padding: 18px 0;
  }
  .footer .copy {
    font-size: 1.5rem;
  }
}

.panel__start {
  overflow: hidden;
  position: relative;
}
.panel__start .mainImg {
  width: 100%;
  height: 100vh;
  background: url(../images/mainImg.png) center/cover no-repeat;
  animation: mainImg-animation 8s linear infinite;
  /* 1サイクルごとに逆再生 */
  animation-direction: alternate;
}
.panel__start .mainImg .star {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #eee;
  box-shadow: 0 0 4px rgba(255, 255, 255, 0.1), 0 0 8px rgba(255, 255, 255, 0.1), 0 0 20px rgb(255, 255, 255);
  position: absolute;
  top: 50%;
  left: 50%;
  animation: star-animation 3s linear infinite;
  animation-delay: 1s;
}
.panel__start .mainImg .star::before {
  content: "";
  width: 300px;
  height: 1px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(90deg, #eee, transparent);
}
.panel__start .mainImg .star:nth-child(1) {
  top: 0;
  right: 0;
  left: initial;
  animation-delay: 0;
  animation-duration: 1s;
}
.panel__start .mainImg .star:nth-child(2) {
  top: 0;
  right: 5%;
  left: initial;
  animation-delay: 0.2s;
  animation-duration: 3s;
}
.panel__start .mainImg .star:nth-child(3) {
  top: 10%;
  right: 0;
  left: initial;
  animation-delay: 0.4s;
  animation-duration: 2s;
}
.panel__start .mainImg .star:nth-child(4) {
  top: 0;
  right: 12%;
  left: initial;
  animation-delay: 0.6s;
  animation-duration: 1.5s;
}
.panel__start .mainImg .star:nth-child(5) {
  top: 0;
  right: 28%;
  left: initial;
  animation-delay: 0.8s;
  animation-duration: 2.5s;
}
.panel__start .mainImg .star:nth-child(6) {
  top: 0;
  right: 42%;
  left: initial;
  animation-delay: 1s;
  animation-duration: 3s;
}
.panel__start .mainImg .star:nth-child(7) {
  top: 37%;
  right: 0;
  left: initial;
  animation-delay: 1.2s;
  animation-duration: 1.75s;
}
.panel__start .mainImg .star:nth-child(8) {
  top: 0;
  right: 49%;
  left: initial;
  animation-delay: 1.4s;
  animation-duration: 1.25s;
}
.panel__start .mainImg .star:nth-child(9) {
  top: 0;
  right: 69%;
  left: initial;
  animation-delay: 0.75s;
  animation-duration: 2.25s;
}
.panel__start .mainImg .star:nth-child(10) {
  top: 0;
  right: 31%;
  left: initial;
  animation-delay: 2.75s;
  animation-duration: 2.25s;
}
.panel__start .mainImg .mainImg__txt {
  display: inline-block;
  width: 100vw;
  font-size: 2.4rem;
  text-align: center;
  line-height: 1.5;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.panel__start .mainImg .mainImg__txt .br__sp {
  display: block;
}
@media (width >= 768px) {
  .panel__start .mainImg .mainImg__txt {
    font-size: 3.12rem;
  }
  .panel__start .mainImg .mainImg__txt .br__sp {
    display: none;
  }
}
@media (width >= 1440px) {
  .panel__start .mainImg .mainImg__txt {
    font-size: 3.6rem;
  }
  .panel__start .mainImg .mainImg__txt .br__sp {
    display: none;
  }
}
.panel__start .mainImg .scroll__arrow {
  width: 30px;
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: scroll-animation 2s linear infinite;
  animation-delay: 3s;
}

video {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1; /* 背景にする */
}

.about__content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 351px;
  height: 245px;
  background: url(../images/aboutContentImg.png) center/cover no-repeat;
}
.about__content .about__profile--container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.about__content .about__profile--container .aboutImg {
  aspect-ratio: 1;
  height: auto;
  width: 80px;
}
.about__content .about__profile--container .about__name--container {
  text-align: center;
}
.about__content .about__profile--container .about__name--container .about__name--eng {
  font-size: 1rem;
}
.about__content .about__profile--container .about__name--container .about__name--jp {
  margin-top: 4px;
  font-size: 2.4rem;
}
.about__content .about__txt--container {
  width: 280px;
  margin-top: 12px;
  padding: 12px 0;
  border-top: 1px solid #00adff;
  border-bottom: 1px solid #00adff;
}
.about__content .about__txt--container .about__txt {
  font-size: 1.2rem;
  line-height: 1.5;
}
@media (width >= 768px) {
  .about__content {
    width: 456.3px;
    height: 318.5px;
  }
  .about__content .about__profile--container {
    gap: 31.2px;
  }
  .about__content .about__profile--container .aboutImg {
    width: 104px;
  }
  .about__content .about__profile--container .about__name--container .about__name--eng {
    font-size: 1.3rem;
  }
  .about__content .about__profile--container .about__name--container .about__name--jp {
    margin-top: 5.2px;
    font-size: 3.12rem;
  }
  .about__content .about__txt--container {
    width: 364px;
    margin-top: 15.6px;
    padding: 15.6px 0;
    border-top: 1.3px solid #00adff;
    border-bottom: 1.3px solid #00adff;
  }
  .about__content .about__txt--container .about__txt {
    font-size: 1.56rem;
  }
}
@media (width >= 1440px) {
  .about__content {
    width: 526.5px;
    height: 367.5px;
  }
  .about__content .about__profile--container {
    gap: 36px;
  }
  .about__content .about__profile--container .aboutImg {
    width: 120px;
  }
  .about__content .about__profile--container .about__name--container .about__name--eng {
    font-size: 1.5rem;
  }
  .about__content .about__profile--container .about__name--container .about__name--jp {
    margin-top: 6px;
    font-size: 3.6rem;
  }
  .about__content .about__txt--container {
    width: 420px;
    margin-top: 18px;
    padding: 18px 0;
    border-top: 1.5px solid #00adff;
    border-bottom: 1.5px solid #00adff;
  }
  .about__content .about__txt--container .about__txt {
    font-size: 1.8rem;
  }
}

.skills__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15.6px;
  flex-wrap: wrap;
  width: 351px;
}
.skills__list .skills__item {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1;
  height: auto;
  width: 100px;
  background: url(../images/skillsItemImg.png) center/cover no-repeat;
  position: relative;
}
.skills__list .skills__item .circle__wrap {
  aspect-ratio: 1;
  height: auto;
  width: 80px;
  position: relative;
}
.skills__list .skills__item .circle__wrap .circle {
  display: block;
  width: 100%;
  height: 100%;
  /* 上からスタート */
  transform: rotate(-90deg);
}
.skills__list .skills__item .circle__wrap .circle .bg,
.skills__list .skills__item .circle__wrap .circle .progress {
  fill: none;
  stroke-width: 10;
}
.skills__list .skills__item .circle__wrap .circle .bg {
  stroke: #eee;
}
.skills__list .skills__item .circle__wrap .circle .progress {
  stroke: #00adff;
  stroke-width: 10;
  /* 末端に使用する形状を定義 */
  /* stroke-linecap: round; */
  /* JSで上書きするので仮でOK */
  stroke-dasharray: 314;
  /* JSで上書きするので仮でOK */
  stroke-dashoffset: 314;
}
.skills__list .skills__item .skills__txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (width >= 768px) {
  .skills__list {
    gap: 15.6px;
    width: 456.3px;
  }
  .skills__list .skills__item {
    width: 130px;
  }
  .skills__list .skills__item .circle__wrap {
    width: 104px;
  }
}
@media (width >= 1440px) {
  .skills__list {
    gap: 18px;
    width: 526.5px;
  }
  .skills__list .skills__item {
    width: 150px;
  }
  .skills__list .skills__item .circle__wrap {
    width: 120px;
  }
}

.works__content {
  width: 255px;
  height: 246px;
  position: relative;
}
.works__content .swiper {
  width: 100%;
  height: 100%;
}
.works__content .swiper .works__list .works__item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.works__content .swiper .works__list .works__item .btn {
  width: 160px;
  padding: 16px 0;
  margin-top: 12px;
  text-align: center;
  background: rgba(0, 174, 255, 0.3137254902);
  border: 1px solid #00adff;
  border-radius: 12px;
  position: relative;
}
.works__content .swiper .works__list .works__item .btn::after {
  content: "";
  aspect-ratio: 0.6666666667;
  height: auto;
  width: 8px;
  background: url(../images/btn-arrow.svg) center/contain no-repeat;
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
  z-index: 2;
}
.works__content .swiper .works__list .works__item .btn:hover {
  opacity: 0.6;
}
.works__content .my-button-prev,
.works__content .my-button-next {
  aspect-ratio: 0.5;
  height: auto;
  width: 30px;
  position: absolute;
  top: 35%;
}
.works__content .my-button-prev .arrowImg__left,
.works__content .my-button-next .arrowImg__left {
  transform: rotate(180deg) translate(50%, 50%);
}
.works__content .my-button-prev .arrowImg__right,
.works__content .my-button-next .arrowImg__right {
  transform: translate(50%, -50%);
}
.works__content .my-button-prev {
  left: -24px;
}
.works__content .my-button-next {
  right: -24px;
}
@media (width >= 768px) {
  .works__content {
    width: 331.5px;
    height: 319.8px;
  }
  .works__content .swiper .works__list .works__item .btn {
    width: 208px;
    padding: 20.8px 0;
    margin-top: 15.6px;
    border: 1.3px solid #00adff;
    border-radius: 15.6px;
  }
  .works__content .swiper .works__list .works__item .btn::after {
    width: 10.4px;
    position: absolute;
    top: 50%;
    right: 5.2px;
  }
  .works__content .my-button-prev,
  .works__content .my-button-next {
    width: 39px;
  }
  .works__content .my-button-prev {
    left: -31.2px;
  }
  .works__content .my-button-next {
    right: -31.2px;
  }
}
@media (width >= 1440px) {
  .works__content {
    width: 382.5px;
    height: 369px;
  }
  .works__content .swiper .works__list .works__item .btn {
    width: 240px;
    padding: 24px 0;
    margin-top: 18px;
    border: 1.5px solid #00adff;
    border-radius: 18px;
  }
  .works__content .swiper .works__list .works__item .btn::after {
    width: 12px;
    position: absolute;
    top: 50%;
    right: 6px;
  }
  .works__content .my-button-prev,
  .works__content .my-button-next {
    width: 45px;
  }
  .works__content .my-button-prev {
    left: -36px;
  }
  .works__content .my-button-next {
    right: -36px;
  }
}

.panel__end {
  background: #000;
}
.panel__end .panel__end--txt {
  font-size: 2.4rem;
  text-align: center;
}
@media (width >= 768px) {
  .panel__end .panel__end--txt {
    font-size: 3.12rem;
  }
}
@media (width >= 1440px) {
  .panel__end .panel__end--txt {
    font-size: 3.6rem;
  }
}/*# sourceMappingURL=style.css.map */