@import url('https://fonts.googleapis.com/css2?family=Cherry+Swash&display=swap');

/* header */

.top-page-header {
  width: 100vw;
  height: 10vh;
  background-color: black;
}

.header-btn {
  padding: 5vh 0 0 700px;
  display: flex;
  justify-content: center;
  font-family: 'Cherry Swash','MS Pゴシック','sans-serif';
}

.header-home {
  color: white;
  margin-right: 50px;
  text-decoration: none;
}

.header-about {
  color: white;
  margin-right: 50px;
  text-decoration: none;
}

.header-works {
  color: white;
  text-decoration: none;
}

/* headerアニメーション */

.navi li a{
  /*線の基点とするためrelativeを指定*/
position: relative;
}

.navi li.current a,
.navi li a:hover{
color:white;
}

.navi li a::after {
  content: '';
  /*絶対配置で線の位置を決める*/
  position: absolute;
  bottom: 0;
  left: 0;
  /*線の形状*/
  width: 100%;
  height: 2px;
  background:white;  /*アニメーションの指定*/
  transition: all .3s;
  transform: scale(0, 1);/*X方向0、Y方向1*/
  transform-origin: center top;/*上部中央基点*/
}

/*現在地とhoverの設定*/
.navi li.current a::after,
.navi li a:hover::after {
  transform: scale(1, 1);/*X方向にスケール拡大*/
}

/* header */

/* body */

.main {
  width: 100vw;
  height: 75vh;
  background-color: black;
}

.main-content {
  color: white;
  display: flex;
  justify-content: space-around;
  padding: 150px 50px 0 100px;
  letter-spacing: 3px;
  animation-name: fade;
  animation-duration: 1s;
  animation-iteration-count: 1;
}

.main-name {
  font-size: 50px;
}

.main-profiles {
  padding-top: 100px;
}

h1 {
  text-decoration: underline;
  line-height: 40px;
}

.main-skills {
  padding-top: 20px;
}

@keyframes fade{
0%{
  opacity: 0;
}
100%{
  opacity: 1;
}
}

/* body */


/* footer */

.footer {
  width: 100vw;
  height: 15vh;
  background-color: black;
  color: white;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items:center ;
}

/* footer */