@charset "utf-8";

h1, h2, h3, a, p, small, li{
   font-family: "Montserrat","Noto Sans JP", sans-serif;
}

li{
  list-style: none;
}

a{
  text-decoration: none;
  color: black;
}

.header{
  position: fixed;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height:60px;
}

.header-logo{
  /* background-color: #EBECE7; */
  margin-top:30px;
  margin-left:2vw;
  width: 78px;
  height:78px;
}

.header-logo img{
  width: 100%;
  object-fit: cover;
  vertical-align: bottom;
  border-radius: 50%;
  border: 1.5px solid black;
}

.header-logo img:hover{
  opacity: 0.7;
}

.menu{
  margin-top: 40px;
  margin-right: 5vw;
  display: flex;
  gap: 25px;
}

.menu-item{
  font-weight: bold;
  color: #B6A78C;
  font-size: 18px;
} 

.menu-item:hover{
  opacity: 0.6;
}


.fv{
  background-color:#EBECE7 ;
}

.fv-wrapper{
  margin: 0 auto 0;
  width:70vw;
  max-width: 1200px;
  height:400px;
  padding-top: 100px;
  display: flex;
  gap: 10%;
}

.fv-wrapper img{
  max-width: 300px;
  max-height:300px;
  width:30vw;
  height:30vw;
  /* height: 50%; */
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid black;
}

.main-name{
  padding-top: 5px;
}

.kanji-name{
  font-size: 20px;
}

.main-name h1{
  font-size: 40px;
  padding-bottom: 10px;
}

.main-name h3{
  border-left: solid 0.5px black;
  font-size: 16px;
  padding-left: 10px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.about{
  background-color:#EBECE7 ;
}

.about-wrapper{
  width:70%;
  margin:0 auto 0;
  padding-top: 70px;
  padding-bottom: 70px;
}


.selfintroduction{
  padding-bottom: 40px;
}

.about-wrapper p{
  font-size: 16px;
  padding-bottom: 16px;

}

.content-title{
  padding-top: 20px;
  font-size: 18px;
  padding-bottom: 20px;
}

.skill-list{
  display: flex;
  gap:40px;
  flex-wrap: wrap;
  padding-bottom: 70px;
}

.skill{
  background-color:#b3b6a9;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 3px;
}

.skills{
  border-bottom: solid 0.5px black;
}

.contact{
  background-color:#EBECE7 ;
  text-align: right;
  padding-bottom: 70px;
}

.contact-wrapper{
    width:70%;
    margin:0 auto 0;
}

.push-btn{
  padding:20px 70px;
  background-color: #B6A78C;
  font: 32px;
  color: white;
}

.push-btn:hover{
  opacity:0.7;
}

.footer{
  background-color: #525252;
  color: white;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.5em;
  text-align: center;
  padding-top: 32px;
  padding-bottom: 32px;
}

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

  .header-logo{
    width: 65px;
    height:65px;
  }

  .fv-wrapper{
    margin: 0 auto 0;
    width:85vw;
    height: 475px;
    /* max-height: 400px; */
    /* height:400px; */
    display: block;
    text-align: center;
  }
  
  .fv-wrapper img{
    /* display: block; */
    /* margin:0 auto 0; */
    max-width: 300px;
    max-height:300px;
    width:50vw;
    height:50vw;
  }

  .main-name{
    padding-top: 15px;
    /* padding-bottom:50px ; */
  }
  
  
  .main-name h1{
    font-size: 22px;
    padding-left: 4px;
  }


  .main-name h3{
    font-size: 14px;
    padding-top: 5px;
    border: none;
  }


  .menu-item{
    font-size: 14px;
  } 

  .kanji-name{
    font-size: 20px;
  }

  .about-wrapper{
    width:85%;
  }
    

  .contact-wrapper{
    width: 85%;
  }

}