@charset "utf-8";

body{
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  background: linear-gradient(to right,#a6bac6, #e9edef);
}

/* header-section start */

header{
  height:100vh;
}

.header_main{
  background-size: cover;
  background-position: center top;
  animation-name:fadeInAnimeHeader;
  animation-duration: 3s; */
}

@keyframes fadeInAnimeHeader{
  from{
opacity: 0;
  }
  to{
opacity: 1;
  }
}

.logo img{
  width:150px;
  margin: 10px 20px;
}

.header-box{
  display: flex;
  align-items: center;
}

.header-list ul{
  font-size: 1.1em;
  height: 30px;
  display: flex;
  margin:0 0 0 15%;
}

.header-list li{
  margin: 10px 20px;
}

.header-list li a{
  padding: 5px 10px;
  background-image: linear-gradient(to right, #185a9d, #43cea2);
	background-repeat: no-repeat;
	background-size: 100% 10%;
	background-position: bottom;
	transition: all 0.25s ease-in;
}

.header-list li a:hover{
  color: #ffffff;
  background-size: 100% 100%;
  transition: 0.2s;
} 

.list_portfolio:hover{
  background-size: 100% 100%;
	color: #ffffff;
}


.title_logo{
  width: 500px;
  margin:150px auto 0;
}

.title_logo img{
  animation-name:fadeInAnimee;
  animation-duration: 3s;
}

@keyframes fadeInAnimee{
25%{
opacity: 0;
}
100%{
  opacity: 1;
}
}
/* header-section end */

/* portfolio-sec start */
#portfolio-sec{
  padding:20px auto;
  margin-bottom: 60px;
}

h2{
  text-align: center;
  font-family: "Cormorant", serif;
  font-size: 3em;
  margin: 0 auto 60px;
}

h3{
  font-size: 1.5em;
  margin-left: 10%;
  display: inline;
  border-bottom:3px solid #666666;
}

.logo-box-1{
  margin-top: 20px;
}

.logo-box-1 p{
  font-size: 1.2em;
  margin: 20px 10% 0 10%;
  letter-spacing: 0.5vh;
}

.logo-box-1 p span{
  font-weight: bold;
  color: gray;
}

.block{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 20px 10% 50px 10%;
}

.box{
  width: 180px;
  height: 180px;
  margin: 10px;
  background: linear-gradient(-20deg, #ffffff 0%, #d0d0d0 100%);
  border: inset 3px #000000;
  border-radius: 10%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.box img{
  width: 150px;
  height: auto;
}

.poster-box{
  margin-top: 20px;
}

.block_2{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.box_2{
  margin: 30px;
}

.box_2 img{
  width: 300px;
  height: auto;
  border: groove 4px gray;

}

/* portfolio-sec end */

/* skill-sec start */

#skill-sec{
  margin-bottom: 60px;  
}

.skill{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 20%;
}


.skill-box{
  padding:8px 15px;
  margin: 0 5px 20px;
  border: inset 3px #000000;
}
/* skill-sec end */

/* profile-sec start */
#profile-sec{
  margin-bottom: 60px;
}

.prof-contents{
  display: flex;
  justify-content: center;
}

.profile{
  width: 600px;
  height: auto;
  padding: 0 20px;
}

.profile dl dt{
  font-size: 1.5em;
  border-left:10px solid #185a9d;
  padding: 0 10px;
  letter-spacing: 0.1.5em;
}

.profile dl dd{
  padding: 1em;
  margin-bottom: 10px;
  letter-spacing: 0.2em;

}
/* profile-sec end */

/* contact-sec end  */

/* footer-sec start */
footer{
  height: 30px;
  background-color: #000000;
}
/* footer-sec end */

.return_top{
  background-color: #f97709;
  color: white;
  font-size: 1.5em;
  font-weight: bold;
  opacity: .7;
  position: fixed;
  right: 30px;
  bottom:30px;
  width: 60px;
  height: 60px;
  border: solid thin;
  border-radius: 50%;
  display: grid;
  justify-content: center;
  align-items: center;
  transform: rotate(-90deg);
  transition: .1s;
  opacity: 0;
  visibility: hidden;
}

.return_top.active{
  opacity: 1;
  visibility: visible;
  animation-name:fadeInAnimeReturnTop;
  animation-duration: .5s;
}

@keyframes fadeInAnimeReturnTop{
  from{
opacity: 0;
  }
  to{
opacity: 1;
  }
}

/* smartPhone 600px */

@media screen and (max-width:600px) {

  body{
    /* width: 100%; */
  }

  header{
    height:100vh;
  }

  .header-mobile{
  display: block;
  }


  .header-box{
    display: block;
    align-items: center;
  }
  
  .header-list{
    /* display: none; */
  }
  
  #portfolio-sec{
    /* display: none; */
  }

  .logo{
    text-align: center;
  }

  .logo img{
    width:100px;
    margin: 10px auto;
  }

  .logo-box-1 p{
    font-size: 1em;
    margin: 20px 5% 0 5%;
    letter-spacing: 0.2vh;
  }  

  .header-list{
    justify-content: center;

  }
  
  .header-list li{
    text-align: center;
  }
  .header-list ul{
    height: 70px;
    align-items: center;
    justify-content: center;
    margin: auto;
  }
  .title_logo{
    width:70%;
    margin:50px auto;
    text-align: center;
  }
  
  .title_logo img{
    width:75%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transform: translateX(-50%);
  }  

  .block{
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    margin: 20px 2% 50px 2%;
  }
  
  .box{
    width:80px;
    height: 80px;
    margin: 5px;
  }

  h2{
    font-size: 28px;
    margin-bottom: 20px;
  }

  h3{
    font-size: 1em;
    margin-left: 5%;
  }

  .skill{
    text-align: center;
    font-size: 0.8em;
    padding:5%;
  }

  .skill-box{
    padding:5px 5px;
  }

.formrun-embed{
  width: 100hv;
  height: 100hv;
}

.return_top{
  background-color: #f97709;
  color: white;
  font-size: 1.2em;
  font-weight: bold;
  opacity: .7;
  position: fixed;
  right: 20px;
  bottom:20px;
  width: 50px;
  height: 50px;
  border: solid thin;
  border-radius: 50%;
  display: grid;
  justify-content: center;
  align-items: center;
  transform: rotate(-90deg);
  transition: .1s;
  opacity: 0;
  visibility: hidden;
}
  
  .return_top.active{
  opacity: 1;
  visibility: visible;
  animation-name:fadeInAnimeReturnTop;
  animation-duration: .5s;
}
/* tblet 1025 */