@charset "UTF-8";
main{
  padding: 0 2rem;
}
.profile .heading__wrapper{
  flex-direction: column;
}
.heading{
  margin: 4rem 0 2rem;
}
.thankyou{
  margin: 0 auto 6rem;
}
/* title */
.profile .split-text__wrapper:nth-child(5){
  margin-right: 1rem;
}
.profile .history__title{
  display: initial;
  margin: 3rem 0 0rem;
  text-align: left;
}
.profile .history__title .split-text__wrapper:nth-child(5){
  margin-right: 0;
}
.profile .history__title .split-text__wrapper{
  font-size: 2.4rem;
}
/* .profile__inner .heading__wrapper .heading__en{
  font-family: var(--main-font);
  font-size: var(--H2_SP);
} */
.heading__wrapper__txt--small{
  font-size: var(--H5);
  margin-left: 0.5rem;
}
.profile__block{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.profile__image{
  width: 60%;
  margin-right: 0rem;
}
.profile__copyright{
  font-size: var(--H7);
  font-family: var(--main-font);
  color: var(--gray);
}
.profile__inner__block{
  margin: 6rem 0;
  color: var(--black);
}
.introduction__txt{
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.introduction__txt__titile{
  font-size: var(--H3_PC);
  letter-spacing: 0.05em;
  text-align: left;
  font-weight: 300;
  position: relative;
}
.introduction__txt__small--titile{
  font-size: var(--H6);
  letter-spacing: 0.05em;
  text-align: left;
  font-weight: 200;
  font-family: var(--main-font);
  margin-top: 1rem;
}
.introduction__quotation01{
  width: 3rem;
  position: absolute;
  top: 0;
  left: 0;
}
.introduction__quotation02{
  width: 3rem;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: rotate(180deg);
}
/* profile */
.profile {
  color: var(--black);
  padding: 12rem 0 8rem;
}
.profile__inner {
  display: flex;
  flex-direction: column;
}
.profile__name--small{
  font-size: var(--H6);
  margin-top: 1rem;
}
.profile__name--big{
  font-size: var(--H3_PC);
  font-family: var(--main-font);
  font-weight: 300;
  letter-spacing: 0.05em;
}
.profile__inner .history {
  width: 100%;
  overflow-x: auto;
  margin: 0 auto;
  border-radius: 1rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.profile__careers{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 2rem 0;
  color: var(--black);
}
.profile__careers__csroll{
  display: flex;
  justify-content: flex-end;
}
.profile__careers__csroll .left{
  width: var(--H7);
  transform: rotate(180deg);
}
.profile__careers__csroll .right{
  width: var(--H7);
  /* transform: rotate(270deg); */
}
.profile__careers__csroll__txt{
  font-size: var(--H7);
  font-family: var(--main-font);
  margin: 0 0.3rem;
  font-weight: 300;
}

table {
  width: 1200px;
  height: 165px;
  border-collapse: collapse;
  background: var(--bg_gray);
  color: var(--black);
  border-radius: 1rem;
}

th{
  width: 300px;
  padding: 2rem 2rem 1rem 2rem;
  border-right: 1px solid var(--lightgray);
  font-size: var(--H7);
  font-weight: normal;
}
th:last-child, td:last-child{
  border-right: none;
}
td{
  padding: 0 2rem;
  line-height: 2rem;
  width: 300px;
  border-right: 1px solid var(--gray);
  font-weight: normal;
  font-size: var(--H8);
}
/* ヘッダーセルのスタイル */
th {
  text-align: left;
  font-size: var(--H3);
  font-family: var(--main-font);
  font-weight: 200;
  border-right: 1px solid var(--gray);
}
/* biography */
.biography {
  position: relative;
  padding-top: 4rem;
  min-height: 100dvh;
  min-height: 100vh;
  background-color: var(--white);
  color: var(--black);
}

.biography__wrapper {
  margin-bottom: 46px;
}

.biography__container {
  position: relative;
  width: 100%;
  height: 285px;
}

.biography__list {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  gap: 90px;
}

.biography__item {
  position: relative;
  z-index: 1;
  width: 240px;
}

.biography__item:last-of-type {
  margin-right: 75px;
}

.biography__date {
  display: inline-block;
  margin-bottom: 20px;
  font-family: var(--main-font);
  font-size: 1.6rem;
  letter-spacing: 0.07em;
}

.biography__title {
  margin-bottom: 48px;
  font-size: 1.6rem;
}

.biography__date,
.biography__title,
.biography__description {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 1.0s, transform 1.0s;
  transition-timing-function: ease;
}

.biography__list.is-show .biography__date,
.biography__list.is-show .biography__title,
.biography__list.is-show .biography__description {
  opacity: 1;
  transform: translateY(0);
}

.biography__item:first-of-type .biography__date,
.biography__item:first-of-type .biography__title,
.biography__item:first-of-type .biography__description {
  transition-delay: 0.5s;
}

.biography__item:nth-of-type(2) .biography__date,
.biography__item:nth-of-type(2) .biography__title,
.biography__item:nth-of-type(2) .biography__description {
  transition-delay: 0.7s;
}

.biography__item:nth-of-type(3) .biography__date,
.biography__item:nth-of-type(3) .biography__title,
.biography__item:nth-of-type(3) .biography__description {
  transition-delay: 0.9s;
}

.biography__item:nth-of-type(4) .biography__date,
.biography__item:nth-of-type(4) .biography__title,
.biography__item:nth-of-type(4) .biography__description {
  transition-delay: 1.1s;
}

.biography__item:last-of-type .biography__date,
.biography__item:last-of-type .biography__title,
.biography__item:last-of-type .biography__description {
  transition-delay: 1.3s;
}
.biography__description {
  font-size: 1.3rem;
  line-height: 2.7;
}

.biography__bg-text {
  position: absolute;
  bottom: 0;
  margin-left: 6vw;
  font-size: 13.2rem;
  font-weight: 900;
  font-family: var(--main-font);
  white-space: nowrap;
  background: linear-gradient(to bottom, #101010, rgba(255, 255, 255, 0));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.timeline {
  list-style: none;
}
.timeline > li {
  margin-bottom: 60px;
}
.timeline-content{
  display: flex;
  justify-content: space-between;
  margin-left: 45px;
}
.timeline-content h3{
  font-size: 1.5rem;
  line-height: 4rem;
}
.timeline-date{
  font-size: 1.4rem;
  letter-spacing: 2px;
  margin: 10px auto;
}
.timeline-content p{
  font-size: 1.2rem;
  letter-spacing: 1px;
  line-height: 2.5rem;
}
.timeline_img{
  width: 100%;
  max-width: 250px;
}
/* skills */
.skills__item{
  border-bottom: 1px solid var(--gray);
}
.skills__item:last-child{
  border-bottom: none;
}
.skills__block{
  padding: 3rem 0.5rem;
}
.skills__block--tip,
.skills__block--tip--pp,
.skills__block--tip--xd,
.skills__block--tip--psd,
.skills__block--tip--ai,
.skills__block--tip--figma,
.skills__block--tip--vs,
.skills__block--tip--st
{
  font-size: var(--H7);
  text-align: center; 
  margin-right: 0.5rem;
  color: var(--white);
  font-family: var(--main-font);
  border-radius: 0.2rem;
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--white);
  font-weight: 300;
}
.skills__block--tip--pp{
  color: #f21f1f;
  border: 1px solid #f21f1f;
}
.skills__block--tip--xd{
  color: #bf6ea9;
  border: 1px solid #bf6ea9;
}
.skills__block--tip--psd{
  color: #5171a7;
  border: 1px solid #5171a7;
}
.skills__block--tip--ai{
  color: #d38167;
  border: 1px solid #d38167;
}
.skills__block--tip--figma{
  color: #68a06d;
  border: 1px solid #68a06d;
}
.skills__block--tip--vs{
  color: #61a3a5;
  border: 1px solid #61a3a5;
}
.skills__block--tip--st{
  color: #878fbf;
  border: 1px solid #878fbf;
}
.skills__title {
  margin-bottom: 0.5rem;
  font-size: 2.4rem;
  font-family: var(--main-font);
  letter-spacing: 0.1rem;
  font-weight: 200;
}
.skills {
  background-color: var(--bg_gray);
  color: var(--black);
  padding: 1rem 1.5rem 2rem;
  position: relative;
}
.skills__item:last-of-type {
  margin-bottom: 0;
}
.skills__sub-heading {
  padding-bottom: 18px;
  transition-delay: 0.3s;
}
.skills__line.is-show {
transform: scaleX(1);
}
.skills__description {
font-size: var(--H6);
font-family: var(--sub-font);
line-height: 2.4rem;
transition-delay: 0.5s;
font-weight: 100;
padding: 0.5rem 0;
margin-bottom: 2rem;
letter-spacing: 0.05em;
}
.skills__inner {
margin-inline: auto;
}
.skills__item:last-of-type {
margin-bottom: 0;
border-bottom: none;
}
.skills__sub-heading {
padding-bottom: 24px;
}
.skills .heading__en{
font-family: var(--main-font);
font-weight: 200;
letter-spacing: 0.1rem;
}
.tag{
  margin: 6rem 0 5rem;
}
.tag__ul{
  display: flex;
  flex-wrap: wrap;
}
.tag__ul__li{
  font-size: var(--H7);
  margin: 0 1rem 1rem 0;
  line-height: 2.5rem;
  border: 1px solid var(--gray);
  padding: 0 1rem;
  border-radius: 0.2rem;
}
/*
.strength{
  margin-top: 6rem;
}
*/
.strength__list{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0rem auto 10rem;
}
.strength__item{
  width: calc(49% - 1.5rem);
  margin: 3rem 0 0;
  background-color: var(--bg_gray);
  color: var(--black);
  border-radius: 0.5rem;
  padding: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.strength__title {
  display: grid;
  margin: 1rem auto;
  font-size: var(--H3_PC);
  font-family: var(--main-font);
  font-weight: 300;
  letter-spacing: 0.1rem;
}
.strength__block__h3--small{
  font-size: var(--H4);
  font-weight: 500;
  color: var(--black);
  text-align: center;
}
.strength__item__img{
  width: 5rem;
  margin-right: 1rem;
  margin-top: 1rem;
  color: var(--gray);
}
.about__works{
  border-bottom: 1px solid #ffffff29;
  background: #000;
  padding: 3rem 1rem 2rem;
}
.heading--about-works{
  margin-bottom: 1rem;
  display: initial;
  color: #fff;
}
.about__works-list{
  display: flex;
  padding: 2rem 0 3rem;
  justify-content: center;
}
.about__works-list__item{
  /* border: 1px solid rgba(0, 0, 0, 0.5); */
  opacity: 1;
  transform: translateY(0);
  width: 50%;
  background: #fff;
  margin-right: 0.2rem;
}
.about__works-list__item:last-child{
  margin-right: 0;
}
.about__works-list__link{
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0.5rem 1rem;
}
.about__works-list__image{
  margin-bottom: 1rem;
  overflow: hidden;
  text-align: center;
}
.about__works-list__title{
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}
.gallery{
  background: var(--black);
  color: var(--white);
  padding: 4rem 2rem 6rem;
}
.gallery__inner__ul{
  display: flex;
  flex-wrap: wrap;
  margin-top: 2rem;
  justify-content: space-between;
}
.gallery__inner__ul__img{
  padding-top: 2rem;
  width: 48%;
  margin-right: 0.5rem;
}
.gallery__inner__ul__img:nth-child(even){
  margin-right: 0; 
}
.gallery__inner__ul__img img{
  border-radius: 1rem;
}
@media (min-width: 375px) {
  .heading__en{
    font-size: var(--H2_PC);
  }
  .strength__title{
    font-size: var(--H3);
  }
  .strength__block__h3--small{
    font-size: var(--H6);
  }
  .strength__item{
    width: calc(50% - 1.5rem);
    padding: 5rem;
    margin: 2rem 0 0;
  }
  .skills{
    margin-bottom: 2rem;
  }
  .introduction__txt__titile{
    font-size: var(--H5);
  }
  /* .profile__careers .heading__en,
  .strength .heading__en,
  .skills .heading__en,
  .gallery .heading__en,
  .summary .heading__en{
    font-size: var(--H2_SP);
    margin-bottom: 1rem;
    font-family: var(--main-font);
    
  } */
  .summary{
    padding: 1rem 2rem 3rem;
    background-color: var(--bg_gray);
    color: var(--black);
    margin: 2rem auto 6rem;
    position: relative;
  }
  .summary h3{
    font-size: var(--H7);
    margin-bottom: 1rem;
  }
  .strength__inner__txt{
    padding-top: 2rem;
    font-size: var(--H7);
    font-weight: 100;
    font-size: var(--H6);
    line-height: 2.8rem;
  }
  .introduction{
    margin: 0rem auto 10rem;
    padding: 3rem;
  }
  .introduction__txt__text{
    line-height: 2.3rem;
    letter-spacing: 0.02em;
  }
}
@media (min-width: 768px) {
  main{
    width: 100%;
    padding: 0 4rem;
  }
  .profile__name {
    line-height: 3rem;
  }
  .profile__images {
    margin-inline: auto;
    max-width: 300px;
  }
  .profile__image::after {
    left: 30px;
    bottom: -30px;
  }
  .skills , .summary{
    padding: 5rem 5rem 9rem;
    border-radius: 1rem;
    margin: 4rem auto 6rem;
    position: relative;
    background-color: var(--bg_gray);
  }
  .profile__careers{
    padding: 0 0 2rem 0;
  }
  .profile__block{
    flex-direction: inherit;
  }
  .biography {
    padding-top: 120px;
    padding-bottom: 278px;
  }
  .biography::before {
    width: 45vw;
  }
  .biography__inner {
    margin-inline: auto;
    padding-inline: 40px;
    max-width: 1160px;
  }
  .biography__wrapper {
    margin-bottom: 0;
  }
  .biography__container {
    height: 350px;
  }
  .biography__list {
    gap: 140px;
  }
  .biography__item {
    width: 300px;
  }
  .biography__item:last-of-type {
    margin-right: 120px;
  }
  .biography__date {
    margin-bottom: 24px;
    font-size: 2.0rem;
  }
  .biography__title {
    margin-bottom: 62px;
    font-size: 1.8rem;
  }
  .biography__dot {
    width: 12px;
    height: 12px;
    margin-bottom: 52px;
  }
  .biography__dot::after {
    width: 440px;
  }
  .biography__item:last-of-type .biography__dot::after {
    width: calc(100vw - 440px);
  }
  .biography__description {
    font-size: 1.5rem;
    line-height: 2.5;
  }
  .biography__bg-text {
    margin-left: 29.375vw;
    font-size: 27.0rem;
  }
  .blog-list{
    margin: 2rem;
  }
  .profile__image {
    margin-right: 7rem;
    width: 15%;
  }
}
@media (min-width: 1024px){
  body{
    background-color: var(--bg-color);
  }
  main{
    width: 828px;
    margin: 0rem auto 2rem;
  }
  .profile__inner__block,
  .skills , .gallery{
    padding: 2rem 2.5rem;
    margin: 4rem auto;
    border-radius: 1rem;
  }
  .profile__careers{
    margin-bottom: 2rem;
  }
  .strength__item{
    margin-right: 1.5rem;
  }
  .strength__title{
    font-size: 3rem;
  }
  .profile__image{
    width: 40%;
  }
  .profile__block{
    flex-direction: initial;
  }
  .gallery{
    padding: 4rem 4rem 6rem;
  }
  .profile__careers{
    padding: 0;
  }
}
.introduction__txt__text{
  font-size: var(--H7);
  letter-spacing: 0.05em;
  text-align: left;
  line-height: 2.5rem;
}
.introduction{
  display: flex;
  flex-direction: column;
  margin: 0rem auto 10rem;
  /* border: 1px solid var(--gray); */
  padding: 0rem;
  border-radius: 1px;
}
@media (max-width: 430px){
  .introduction{
    margin: 0rem auto;
    padding: 3.5rem 2rem;
  }
  .introduction__txt__text{
    line-height: 2.3rem;
    letter-spacing: 0.02em;
  }
  .profile__name--small{
    text-align: center;
  }
}