@charset "utf-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  color: dimgray;
}

.parallax-bg {
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 50vh;
}

.img-bg-00 {
  background-image: url(/images/20190624_190034.jpg);
}

.img-bg-01 {
  background-image: url(/images/digital-download.jpg);
}

.img-bg-02 {
  background-image: url(/images/finger-code.jpg);
}

.img-bg-03 {
  background-image: url(/images/coding01.jpg);
}

#fv .wrapper {
  width: 100%;
  height: 100vh;
  background-image: url(/images/laptop-table01.jpg);
  background-size: cover;
  background-position: center;
}

#fv .wrapper .logo1 {
  display: none;
}

#fv .wrapper .nav {
  width: 100%;
  height: auto;
  position: fixed;
  background: rgba(256, 256, 256, .8);
  z-index: 1000;
}

#fv .wrapper .nav-bar {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#fv .wrapper .nav-bar .logo {
  font-size: 2rem;
}

#fv .wrapper .nav-bar .logo a {
  color: white;
  text-shadow: 2px 2px 2px black;
}

#fv .wrapper .nav-bar a {
  text-decoration: none;
}

#fv .wrapper .nav-bar .nav-list ul {
  display: flex;
  list-style: none;
}

#fv .wrapper .nav-bar .nav-list ul li {
  padding: .5rem 2rem 0 2rem;
}

#fv .wrapper .nav-bar .nav-list ul li a {
  color: dimgray;
  font-size: 1rem;
}

#fv .wrapper .nav-bar .nav-list ul li a:hover {
  color: red;
  border-bottom: 2px solid red;
}

.container {
  width: 100%;
  min-height: 100vh;
}

.wrapper {
  width: 80%;
  margin: 0 auto;
}

.ttl span  {
  color: red;
}

.ttl {
  font-size: 1.5rem;
  letter-spacing: .5rem;
  padding-top: 50px;
  padding-bottom: 50px;
  color: dimgray;
  text-align: center;
}

#about .about  {
  display: flex;
}

#about .pic {
	opacity: 0;
}

/*==================================================
動かしたい動き（今回は” ふわっ” を採用）
===================================*/

.fadeInUp {
animation-name:fadeInUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeInUpAnime{
  from {
    opacity: 0;
	  transform: translatey(-100px);
  }

  to {
    opacity: 1;
	  transform: translatey(0);
  }
}

#about .about .pic {
  width: 50%;
}

#about .about img {
  width: 100%;
  height: auto;
  border-radius: 25px;
  border-right: 3px solid darkslategray;
  border-bottom: 3px solid darkslategray;
}

#about .prof {
	opacity: 0;
}

/*==================================================
動かしたい動き（今回は” 右から” を採用）
===================================*/

.fadeRight {
animation-name:fadeRightAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeRightAnime{
  from {
    opacity: 0;
	  transform: translatex(100px);
  }

  to {
    opacity: 1;
  	transform: translatex(0);
  }
}

#about .about .prof {
  width: 40%;
  margin: 0 0 0 auto;
  justify-content: center;
  padding: 20px;
}

#about .about .prof h2 {
  display: inline-block;
  padding-left: 30px;
  padding-bottom: 10px;
}

#about .about .prof ul {
  list-style: none;
  padding-bottom: 30px;
}

#about .about .up  {
  padding-top: 30px;
}

#about .up {
	opacity: 0;
}

/*==================================================
動かしたい動き（今回は” 下から” を採用）
===================================*/

.fadeUp {
  animation-name:fadeUpAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
  opacity: 0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
	  transform: translateY(100px);
  }

  to {
    opacity: 1;
	  transform: translateY(0);
  }
}

.works {
  display: flex;
  justify-content: space-between;
}

.box1,
.box2,
.box3 {
	opacity: 0;
}

/*==================================================
動かしたい動き（今回は” ふわっ” を採用）
===================================*/

.fadeUp {
  animation-name:fadeUpAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
  opacity: 0;
}
  
@keyframes fadeUpAnime{
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInUpTrigger {
  opacity: 0;
}

.works .box1,
.works .box2,
.works .box3 {
  width: 32%;
}


.works .box1 img,
.works .box2 img,
.works .box3 img {
  width: 100%;
  border-radius: 25px;
  border-right: 3px solid darkslategray;
  border-bottom: 3px solid darkslategray;
}
.works .info {
  margin-left: 50px;
}

.works .info .icon {
  color: dimgray;
  padding-bottom: 20px;
}

#contact {
  min-height: 100vh;
}

#contact .contact {
  display: flex;
}

/*==================================================
動かしたい動き（今回は” ふわっと” を採用）
===================================*/

.zoomIn {
  animation-name:zoomInAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
  opacity: 0;
}

@keyframes zoomInAnime{
  from {
    opacity: 0;
    transform: scale(.3);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

#contact .pic {
  width: 50%;
}

#contact .pic img{
  width: 100%;
  height: auto;
  border-radius: 25px;
  border-right: 3px solid darkslategray;
  border-bottom: 3px solid darkslategray;
}

#contact .i {
  width: 50%;
  text-align: center;
  margin: auto;
}

#footer {
  width: 100%;
  height: 10vh;
  background-color: dimgray;
  text-align: center;
}

#footer p {
  display: block;
  color: black;
}

#footer i {
  color: black;
  padding: 10px 5px;
}

@media screen and (max-width: 960px) {
  
  p {
    font-size: .8rem;
  }

  .img-bg-00 {
    background-image: url(/images/20190624_190034.jpg);
    background-position: left;
  }

  #fv .wrapper .nav-bar .logo {
    font-size: 1.5rem;
  }

  #fv .wrapper .nav-bar {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  #fv .wrapper .nav-bar .nav-list ul li {
    padding: .5rem .5rem 0 .5rem;
  }

  #fv .wrapper .nav-bar .nav-list ul li a {
    color: dimgray;
    font-size: .8rem;
  }

  .ttl {
    font-size: 1.2rem;
    letter-spacing: .2rem;
  }

  .container {
    width: 100%;
    min-height: 100vh;
  }

  .wrapper {
    width: 90%;
    margin: 0 auto;
  }
  
  

  #about .about .pic {
    margin: auto 0 auto 0;
  }

  #about .about .prof {
    width: 50%;
  }

  #about .about .prof h2 {
    font-size: 1.3rem;
  }

  #about .about .prof ul li {
    font-size: .8rem;
  }

}

@media screen and (max-width: 680px) {

  #fv .nav-list ul li i{
    display: none;
  }

  .wrapper {
    width: 80%;
    margin: 0 auto;
  }

  #about .about  {
    flex-direction: column;
  }
  
  #about .about .pic {
    width: 100%;
  }
  
  #about .about .prof {
    width: 100%;
    margin: 30px auto 0 auto;
  }
  
  .works {
    flex-direction: column;
  }
  
  #works .wrapper .delayScrorll {
    display: none;
  }
  
  #works .wrapper .fadeInUpTrigger {
    display: block;
  }
  
  .works .box1,
  .works .box2,
  .works .box3 {
    width: 100%;
    margin-bottom: 30px;
  }

  #contact .contact {
    flex-direction: column;
  }
  #contact .pic {
    width: 100%;
    margin-bottom: 30px;
  }

}

@media screen and (max-width: 415px) {
  
  .parallax-bg {
    background-position: left;
    height: 30vh;
  }

  #fv .wrapper {
    position: relative;
  }

  #fv .wrapper .logo1 {
    display: block;
    text-align: center;
  }

  #fv .wrapper .logo1 {
    font-size: 2rem;
    text-shadow: 2px 2px 2px black;
  }
  
  #fv .wrapper .logo1 a {
    color: white;
  }
  
  #fv .wrapper a {
    text-decoration: none;
  }
  
  #fv .wrapper .logo {
    display: none;
  }
  
  #fv .wrapper .nav {
    width: 100%;
    height: 10vh;
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: black;
    z-index: 100;
  }

  #fv .wrapper .nav-bar .nav-list ul {
    justify-content: space-between;
  }
  
  #fv .wrapper .nav-bar .nav-list ul li a {
    color: white;
    font-size: .8rem;
  }

  #contact .i .pc {
    display: none;
  }

  #contact .i .tablet {
    display: none;
  }

  #contact .i .mobile {
    display: block;
  }

  #contact {
    min-height: 80vh;
  }
  
  #footer {
    width: 100%;
    height: 10vh;
    background-color: dimgray;
    text-align: center;
    margin-bottom: 10vh;
  }
  
}









