@charset "UTF-8";

:root {
  --main-color: #111;
  --bg-color: #f5f5f5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  box-sizing: border-box;
  overflow-x: clip;
  color: var(--main-color);
}

a {
  text-decoration: none;
  color: var(--main-color);
}

img {
  max-width: 100%;
}

li {
  list-style: none;
}

p,
h1,
h2,
h3,
h4,
span {
  line-height: 120%;
  color: var(--main-color);
}

p,
h3,
h4 {
  font-family: "Noto Sans JP", sans-serif;
}

body {
  background-color: var(--bg-color);
}

/* FV */
#canvas {
  position: relative;
  width: 100%;
  height: 100svh;
  background: #000;
  z-index: 10;
}

#canvas>canvas {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -10;
  display: block;
}

/* header */
#header {
  position: fixed;
  width: 100%;
  padding: 24px 64px;
  justify-content: space-between;
  display: flex;
  align-items: center;
  z-index: 1000;
  transition: 0.3s ease;
}

#header.header-bg {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  background-color: rgba(245, 245, 245, 0.9);
}

#header.header-bg span,
#header.header-bg ul li {
  color: var(--main-color);
}

#header.header-bg .global-nav a::after {
  background-color: var(--main-color);
}

.logo-text {
  color: #fff;
  font-size: 18px;
  letter-spacing: 1px;
  transition: opacity 0.3s ease;
}

.logo-text.logo-text:hover {
  opacity: 60%;
}

/* headerナビゲーション */
.global-nav ul {
  display: flex;
}

.global-nav ul a .nav-item {
  color: #fff;
  font-size: 14px;
}

.global-nav ul a {
  position: relative;
  display: block;
  padding-left: 32px;
}

.text-wrap {
  display: flex;
  gap: 0px;
}

.text-wrap:hover .letter {
  text-shadow: 0 0 0 #fff, 0 -1.5em 0 #fff;
}

.letter {
  overflow: hidden;
  color: transparent;
  text-shadow: 0 1.5em 0 #fff, 0 0 0 #fff;
  transition: text-shadow 0.2s;
  transition-delay: calc(var(--index) * 0.03s);
}

.sr-only {
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border-width: 0;
  white-space: nowrap;
}

#header.header-bg .text-wrap:hover .letter {
  text-shadow: 0 0 0 var(--main-color), 0 -1.5em 0 var(--main-color);
}

#header.header-bg .letter {
  text-shadow: 0 1.5em 0 var(--main-color), 0 0 0 var(--main-color);
  overflow: hidden;
  color: transparent;
  transition: text-shadow 0.2s;
  transition-delay: calc(var(--index) * 0.03s);
}


h1 {
  position: absolute;
  bottom: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: max-content;
  white-space: nowrap;
  font-size: clamp(32px, 2.2vw, 64px);
  color: #fff;
  line-height: 1;
  letter-spacing: 40px;
  font-weight: 200;
  z-index: 2;
}

h1::after {
  content: "";
  margin-right: -40px;
}


.toggle_btn {
  display: none;
  position: fixed;
  top: 16px;
  right: 24px;
  width: 40px;
  height: 40px;
  transition: all .5s;
  cursor: pointer;
  z-index: 20;
}

.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 40px;
  height: 1.5px;
  background-color: #fff;
  border-radius: 4px;
  transition: all .5s;
}

.header-bg .toggle_btn span {
  background-color: var(--main-color);
}

.toggle_btn span:nth-child(1) {
  top: 8px;
}

.toggle_btn span:nth-child(2) {
  top: 19px;
}

.toggle_btn span:nth-child(3) {
  bottom: 8px;
}

.open .toggle_btn span {
  background-color: #fff;
}

.open .toggle_btn span:nth-child(1) {
  transform: translateY(11px) rotate(-315deg);
}

.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}

.open .toggle_btn span:nth-child(3) {
  transform: translateY(-11px) rotate(315deg);
}

#mask {
  display: none;
  transition: all .5s;
}

.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--main-color);
  opacity: .85;
  z-index: 10;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  #header {
    padding: 24px 32px;
  }

  .logo-text {
    font-size: 20px;
  }

  .open .logo-text {
    display: none;
  }

  .toggle_btn {
    display: block;
  }

  .global-nav ul {
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease-in-out;
    visibility: hidden;
    position: absolute;
  }

  .global-nav ul a .nav-item {
    color: #fff;
    font-size: 16px;
  }

  #header.header-bg .letter {
    color: #fff;
  }

  .open .global-nav ul {
    position: relative;
    top: 50px;
    right: 30px;
    flex-direction: column-reverse;
    display: block;
    z-index: 100;
    transform: scaleY(1);
    visibility: visible;
  }

  .global-nav ul a {
    position: relative;
    padding-bottom: 20px;
  }

  h1 {
    position: absolute;
    bottom: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    white-space: nowrap;
    width: max-content;
    font-size: clamp(16px, 4vw, 32px);
    color: #fff;
    line-height: 2;
    letter-spacing: 22px;
    font-weight: 200;
    z-index: 2;
  }
}

@media screen and (max-width: 450px) {
  h1 {
    width: auto;
    white-space: pre-wrap;
    font-size: clamp(20px, 4vw, 32px);
    text-align: left;
  }

}

/* メインコンテンツ */
main {
  position: relative;
  z-index: 2;
}

.wrapper {
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 32px;
  padding-left: 32px;
}

/* about */
#about {
  padding: 200px 0;
  background: linear-gradient(to bottom, #000 0%, #131313 60%, #000 100%);
  text-align: center;
  color: #fff;
}

.into-title {
  font-size: 44px;
  font-weight: 200;
  letter-spacing: 5px;
  color: #fff;
}

.description {
  font-size: 15px;
  margin-top: 60px;
  line-height: 3;
  color: #fff;
}

.sp-br {
  display: inline;
}

.sp-br2 {
  display: none;
}

.sp-br3 {
  display: none;
}

.sp-br4 {
  display: inline;
}

@media screen and (max-width: 520px) {
  .sp-br2 {
    display: inline;
  }

  .sp-br4 {
    display: none;
  }

}

@media screen and (max-width: 768px) {
  .sp-br {
    display: inline;
  }
}

.view__link {
  margin-top: 60px;
}

.view__link a {
  display: inline-flex;
  font-size: 24px;
  padding: 12px 32px;
  margin: 0 auto;
  color: var(--main-color);
  background-color: #fff;
  border-radius: 30px;
}

.view__link a:after {
  content: "";
  display: inline-block;
  background-image: url(../img/arrow.png);
  background-size: contain;
  width: 30px;
  height: 30px;
  transition: 0.3s;
  margin-left: 36px;
}

.view__link a:hover::after {
  transform: translateX(6px);
}

@media screen and (max-width: 768px) {
  .wrapper {
    padding-right: 20px;
    padding-left: 20px;
  }

  /* about */
  #about {
    padding: 160px 0;
  }

  .into-title {
    font-size: 40px;
  }

  .description {
    font-size: 14px;
  }
}

@media screen and (max-width: 520px) {
  .description {
    font-size: 14px;
    line-height: 200%;
  }
}

/* works */
#works {
  padding: 120px 0 90px;
}

.sec-title {
  text-align: left;
  margin-bottom: 60px;
}

.main-ttl {
  font-size: 52px;
  font-weight: 400;
}

.sub-ttl {
  margin-top: 20px;
  font-size: 16px;
}

.works__grid {
  display: grid;
  column-gap: 32px;
  row-gap: 60px;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.works__item {
  align-items: center;
  height: 100%;
}

.works__item a {
  cursor: pointer;
  display: block;
  overflow: hidden;
}

.works__item a img {
  display: block;
  width: 100%;
  height: 100%;
  transition: transform .4s ease;
}

.works__item a:hover img {
  transform: scale(1.04);
}

.works__products {
  padding-top: 16px;
}

.works__products .product__ttl {
  font-size: 20px;
  font-weight: 500;
  line-height: 130%;
}

.works__products .category {
  font-size: 15px;
  padding-top: 16px;
  font-weight: 200;
}

.works__products .tags {
  padding-top: 24px;
}

.works__products .tags span {
  display: inline-block;
  font-size: 12px;
  border: #626262 solid 1px;
  border-radius: 5px;
  padding: 4px 8px;
  margin-right: 4px;
  line-height: 100%;
  background-color: #ffffff;

}

@media screen and (max-width: 768px) {
  #works {
    padding: 100px 0 60px;
  }

  .sec-title {
    margin-bottom: 60px;
  }

  .main-ttl {
    font-size: 52px;
  }

  .sub-ttl {
    margin-top: 12px;
    font-size: 16px;
  }

  .works__grid {
    row-gap: 40px;
    grid-template-columns: repeat(1, 1fr);
    justify-content: center;
  }

  .works__products .product__ttl {
  font-weight: 600;
}
  .works__products .tags {
    padding-top: 18px;
  }

  .works__products .tags span {
    font-size: 12px;
    margin-bottom: 4px;
  }
}

/* writing */
#writing {
  padding: 90px 0 180px;
}

.writing__grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(3, 1fr);
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  flex: none;
}

.writing__grid a:hover {
  transition: opacity 0.3s ease;
  opacity: 0.8;
}

.writing__item {
  align-items: center;
}

.writing__blog {
  padding-top: 8px;
}

.writing__blog .blog__ttl {
  font-size: 15px;
  font-weight: 500;
  line-height: 150%;
}

.writing__blog .date {
  font-size: 12px;
  padding-top: 12px;
  font-weight: 200;
  color: #333;
}

@media screen and (max-width: 768px) {
  #writing {
    padding: 60px 0 120px;
  }

  .writing__blog .blog__ttl {
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
  }

  .writing__grid {
    column-gap: 20px;
    row-gap: 24px;
    grid-template-columns: repeat(1, 1fr);
  }

}

/* footer */
footer {
  background-color: #000;
  padding: 80px 0 40px;

}

.footer__contact {
  text-align: left;
  margin-bottom: 80px;
}

.footer__contact .main-ttl {
  color: #808080;
}

.footer__contact .mail {
  position: relative;
  font-size: clamp(64px, 6.6vw, 96px);
  margin-top: 4px;
  color: #fff;
  font-weight: 400;
}

.footer__contact .mail::after {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fff;
  content: "";
  width: 100%;
  height: 3px;
  transform: scale(1, 1);
  transform-origin: left top;
  transition: transform .3s ease;
}

.footer__contact .mail:hover::after {
  transform: scale(0, 1);
}

.border {
  display: block;
  height: 1px;
  width: 100%;
  background-color: #929292;
}

.footer__nav {
  margin-top: 80px;
}

.footer__nav-items {
  display: flex;
}

.footer__nav-items a {
  position: relative;
  display: block;
  font-size: 16px;
  margin-right: 40px;
  color: #fff;
}


.footer__sns-items {
  display: flex;
  margin-top: 44px;
}

.footer__sns-items a:hover {
  transition: opacity 0.3s;
  opacity: 0.6;
}

.footer__sns-items .sns-item {
  padding-right: 24px;
}

.footer__sns-items .sns-item img {
  width: 40px;
  height: 40px;
}

.footer__copy {
  text-align: right;
}

.footer__copy span {
  color: #fff;
  display: block;
  font-size: 32px;
  font-weight: 200;
  letter-spacing: 10px;
  margin-bottom: 24px;
}

.footer__copy span:last-child {
  font-size: 12px;
  letter-spacing: 1px;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  footer {
    padding: 60px 0 20px;
  }

  .footer__contact {
    margin-bottom: 60px;
  }

  .footer__contact .main-ttl {
    font-size: 32px;
    margin-bottom: 8px;
  }

  .footer__contact .mail {
    font-size: clamp(32px, 8vw, 64px);
  }

  .footer__nav {
    margin-top: 60px;
  }

  .footer__nav-items a {
    font-size: 16px;
    margin-right: 32px;
  }

  .footer__sns-items {
    margin-top: 20px;
  }

  .footer__sns-items .sns-item {
    padding-right: 16px;
  }

  .footer__sns-items .sns-item img {
    width: 40px;
    height: 40px;
  }

  .footer__copy {
    margin-top: 40px
  }

  .footer__copy span {
    font-size: 20px;
    margin-bottom: 16px;
  }

}


/* ABOUTページ */
/* about.html */

.sub-hero {
  position: relative;
  align-items: center;
  justify-content: center;
  height: 360px;
  width: 100%;
  background-color: #000;
}

.bg {
  position: relative;
  inset: 0;
  pointer-events: none;
  z-index: 10;
}

.bg--red {
  position: absolute;
  top: 0;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(180px);
  background: #FF7A7A;
  opacity: .4;
}

.bg--blue {
  position: absolute;
  top: 350px;
  right: 80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(180px);
  background: #7A9BFF;
  opacity: .4;
}

.page-ttl {
  font-size: 80px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  line-height: 1;
  font-weight: 400;
  z-index: 200;
}

.page-ttl:after {
  content: "私について";
  position: absolute;
  bottom: -32px;
  left: 0;
  font-size: 24px;
}

@media screen and (max-width: 768px) {

  .bg--red,
  .bg--blue {
    display: none;
  }

  .page-ttl {
    font-size: 64px;
  }

  .page-ttl:after {
    font-size: 20px;
  }
}

#concept {
  color: #fff;
  background-color: #000;
  position: relative;
  z-index: 200;
}

#concept .border {
  background-color: #fff;
}

.concept__content {
  padding: 100px 0;
}

.concept__ttl {
  font-size: 32px;
  color: #fff;
  font-weight: 400;
  line-height: 150%;
}

.concept__text {
  margin-top: 32px;
  font-size: 14px;
  line-height: 200%;
  color: #fff;
  font-weight: 300;
}

@media screen and (max-width: 520px) {
  .sp-br2 {
    display: inline;
  }

  .concept__text {
    font-size: 16px;
    font-weight: 300;
  }

}

#values {
  color: #fff;
  background-color: #000;
  padding: 80px 0 120px;
}

.values__title .main-ttl,
.values__title .sub-ttl {
  color: #fff;
}

.values__content {
  display: flex;
  width: 100%;
  align-items: center;
}

.values__content .value__img {
  width: 40%;
  max-width: 350px;
  margin: 0 80px 0 20px;
  min-width: 300px;
}

.values__content .value__img img {
  width: 100%;
  height: auto;
  display: block;
}

.values__mvv {
  max-width: 900px;
  height: 100%;
}

.values__item {
  padding: 10px;
}

.values__item1 {
  padding-bottom: 32px;
  border-bottom: #929292 solid 1px;
}

.values__mvv .vv {
  display: flex;
  margin-top: 32px;
}

.values__item2 {
  padding-right: 32px;
  border-right: #929292 solid 1px;
}

.values__item3 {
  padding-left: 32px;
}

.values__content-ttl {
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
  color: #fff;
}

.values__content-ttl1.values__content-ttl {
  font-size: 24px;
}

.values__content-text {
  font-size: 14px;
  line-height: 180%;
  font-weight: 100;
  margin-top: 20px;
  color: #fff;
}

.values__content-text span{
  opacity: 50%;
  color: #fff;
}



@media screen and (max-width: 1024px) {
  #values {
    padding: 80px 0;
  }

  .values__content {
    flex-direction: column;
    align-items: center;
  }

  .values__content .value__img {
    max-width: 400px;
    min-width: 300px;
    width: 100%;
    padding: 20px;
    margin: 0;
  }

  .values__mvv {
    width: 100%;
  }

  .values__item {
    padding: 40px 0;

  }

  .values__mvv .vv {
    margin-top: 0px;
    flex-direction: column;

  }

  .values__item2 {
    border: none;
  }

  .values__item3 {
    border-top: #929292 solid 1px;
  }
  .values__content-text {
  font-weight: 300;
}


}

/* profile */
#profile {
  padding: 120px 0;
}

.profile__content {
  display: flex;
  align-items: start;
}

.profile__content .profile__img {
  width: 300px;
  padding-right: 40px;

}

.profile__content .profile__img img {
  width: 100%;
  height: auto;
  display: block;
}

.profile__content .profile__text .name {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 4px;
}

.profile__content .profile__text .profile__overview {
  font-size: 14px;
  padding-top: 32px;
}

.profile__content .profile__text .overview {
  line-height: 150%;
  padding-top: 16px;
}

@media screen and (max-width: 768px) {
  #profile {
    padding: 120px 0 60px;
  }

  .profile__content {
    flex-direction: column;
  }

  .profile__content .profile__img {
    width: 250px;
    padding: 20px;
    margin: 0 auto 0 0;
    padding: 0 0 40px 0;

  }

}


/* career */
#career {
  padding: 90px 0 180px;

}

.career__content {
  position: relative;
}

.career__content .career__year {
  display: flex;
  align-items: flex-start;
}

.career__content .career__flex {
  position: relative;
  display: flex;
  align-items: center;
}

.career__flex span {
  width: 20px;
  height: 20px;
  background: #d9d9d9;
  border-radius: 50%;
  margin-right: 20px;
}

.career__flex span {
  transform: scale(0);
  transition: transform 1s ease;
}

.career__flex span.is-active {
  transform: scale(1);
}

.career__line {
  position: absolute;
  left: 119px;
  top: 0;
  width: 2px;
  background-color: #d9d9d9;
  height: 0;
  transform-origin: top;
  transition: height 4.0s ease;
}

.career__line {
  height: 0%;
}

.career__content.is-active .career__line {
  height: var(--line-height);
}

.career__content p,
.career__content span {
  line-height: 150%;
  font-size: 14px;
}

.career__content .career__year:not(:last-child) p,
.career__content .career__year:not(:last-child) span {
  margin-bottom: 40px;
  max-width: 700px;
}

.career__content .career__year .career__flex p {
  white-space: nowrap;
  padding-right: 24px;
  width: 110px;
}

.career__content .career__event p {
  font-size: 16px;
  padding-left: 24px;
}


@media screen and (max-width: 768px) {
  #career {
    padding: 60px 0 120px;
  }

  .career__line {
    display: none;
  }

  .career__content span {
    display: none;
  }

  .career__content .career__year {
    flex-direction: column;
  }

  .career__content .career__flex {
    padding-right: 0px;
  }

  .career__content .career__year:not(:last-child) p,
  .career__content .career__year:not(:last-child) span {
    margin-bottom: 0px;
  }

  .career__content .career__year .career__flex p {
    padding-right: 0px;
    margin-bottom: 4px;
    font-weight: 500;
    font-size: 18px;
  }

  .career__content .career__year:not(:last-child) {
    margin-bottom: 32px;
  }

  .career__content .career__event p {
    font-size: 16px;
    padding-left: 24px;
  }
}