@charset "UTF-8";



/* production---------------------------------------*/



.senzai {
  position: relative;
  display: flex;
  align-items: center;
  margin: 200px auto 200px;
  height: 100%;
  max-width: 1440px;
}


/* @keyframes swing {
  0% {
    transform: rotate(-5deg);
  }

  50% {
    transform: rotate(5deg);
  }

  100% {
    transform: rotate(-5deg);
  }
} */

.senzai_img {
  display: inline-block;
  height: 437px;
  flex-shrink: 0;
  width: 353px;
  aspect-ratio: 1108/1260;
  border-radius: 50% 50% 50% 50% /60% 60% 40% 40%;
  /* animation: swing 2s ease-in-out infinite;

  transform-origin: bottom center; */
}

.text_wrapper {
  margin-left: 100px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* 左揃え */
  justify-content: center;
  /* 垂直中央 */
  height: 100%;
  /* 親要素の高さが必要なら指定 */
   
}

.name__wrapper {
  align-items: flex-start;
}

.about_title {
  position: absolute;
  color: #000;
  font-family: Inter;
  font-size: 3.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-left: 120px;
  top: -80px;
}

.about__name {
  font-family: Inter;
  font-size: 3rem;
  font-weight: 500;
}

.about__furi {
  font-size: 1.6rem;
  font-weight: 400;
}

.about__txt {
  font-family: Inter;
  font-size: 1.4rem;
  margin-top: 24px;
}

.skill_wrapper {
  position: relative;
  margin: 0 auto;
  border-radius: 50px 50px 50px 50px;
  background: #E5E5E5;
  max-width: 1440px;
  height: auto;
  padding: 100px 11.8% 100px;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.skill_title {
  color: #000;
  font-family: Inter;
  font-size: 3.5rem;
  font-weight: 500;
  margin-bottom: 40px;
}

.skill_img_content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 27px;
}

.skill_img {
  max-width: 200px;
  height: auto;
  border-radius: 5%;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.ximg {
  height: 40px;
  width: 40px;
}

.skill_txt_wrapper{
  margin-top: 100px;
}

.skill_txt{
  font-family: Inter;
  font-size: 1.6rem;
  margin-top: 16px;
}

.big_font{
  font-weight: 700;
}


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

  .senzai {
    display: block;
  }

  .skill_txt{
    margin-top: 32px;
  
  }


  .senzai_img {
    display: inline-block;
    height: 370px;
    flex-shrink: 0;
    width: 300px;
    aspect-ratio: 1108/1260;
    border-radius: 50% 50% 50% 50% /60% 60% 40% 40%;
  }

  .about_title {
    margin-left: 0;
  }

  .text_wrapper {
    margin-top: 100px;
    margin-left: 0;
  }

  .skill_wrapper {
    max-width: 1440px;
    padding: 100px 11.8% 200px;
  }

  .skill_img {
    max-width: 180px;
  }



}


@media (max-width: 767px) {
  .senzai {
    display: block;
    margin: 100px auto 100px;
  }

  .senzai_img {
    height: auto;
    width: 280px;
  }


  .about_title {
    margin-left: 0;
  }

  .text_wrapper {
    margin-top: 50px;
    margin-left: 0;
  }

  .skill_img_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .skill_wrapper {
    padding: 50px 11.8% 50px;
  }


}