@charset "utf-8";
.sp_only{
  display: none;
}
/* トップコンテンツ */
.top_contents {
  width: 100%;
  height: auto;
}
.top_shapes_container {
  height: 760px;
  max-width:1280px;
  width: 100%;
  position: relative;
  z-index: 78;
  margin: 150px auto 100px;
}
.top_contents img{
  display: inline-block;
  position:absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.top_shapes_door {
  background-color: rgb(0, 0, 0);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 97px;
  height: 200px;
  z-index: 84;
  animation: doorOpen 3s forwards;
}

.top_shapes_nobu {
  background-color: rgb(255, 255, 255);
  position: absolute;
  top: 50%;
  left: 80%;
  transform: translateY(-50%);
  width: 13px;
  height: 13px;
  z-index: 85;
  animation: doorOpen 5s forwards;
}

.top_site_name {
  font-size: 50px;
  font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-weight: bolder;
  color: rgb(0, 0, 0);
  line-height: 1.2;
  text-align: left;
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  z-index: 88;
}

.top_site_name span {
  font-size: 40px;
  font-weight: normal;
  z-index: 88;
}

.top_catch h1 {
  font-size: 50px;
  font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  color: rgb(0, 0, 0);
  line-height: 1.2;
  text-align: left;
  position: absolute;
  top: 50%;
  right:8%;
  transform: translateY(-50%);
  z-index: 89;
}

.top_catch h1 span {
  animation: bgColorChange 5s forwards;
}
/* トップコンテンツのアニメーション */
@keyframes doorOpen {
  0% {
    clip-path: polygon(13% 5%, 100% 0, 100% 100%, 13% 95%);
  }
  100% {
    clip-path: polygon(50% 20%, 100% 0%, 100% 100%, 50% 80%);
  }
}

@keyframes bgColorChange {
  0% {

  }
  100% {
    color: #fff;
    background-color: #000000;
  }
}


/* スキル */
.skill_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap:20px;
}

.skill_item {
  width: 48%;
  margin-bottom:50px;
  
}

.skill_name {
  border-left:10px solid #000000;
  padding-left: 10px;
  margin-bottom: 10px;
  font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  /* background-color: #000000;
  color:#ffffff; */
}
/* プロフィール */
.other_container{
  box-sizing: border-box;
  max-width: 1276px;
  width: 100%;
  z-index: 78;
  margin:100px auto;
 padding:0 10px;
 display: flex;
 justify-content: space-between;
}
.contents_container_vertical{
  box-sizing: border-box;
  z-index: 78;
  border:20px solid #000000;
  border-radius: 15px;
  padding:10px;
  align-content: center;
}

/* コンタクト */
.contact {
  text-align: center;
}
.mail_icon{
  width:100px;
  height:auto;
}
.contact_text {
  margin-top: 10px;
}
.contact_list{
  margin-bottom:50px;
}
/* トップへ戻るボタン */
.back_top_btn {
  width:100%;
  font-weight: bold;
  padding: 10px;
  cursor: pointer;
  text-align: center;
  background-color: #4c4c4c;
    vertical-align: bottom;
  color: #fff;
  box-sizing: border-box

}
