@charset "utf-8";
/* CSS Document */
/*.main-contact{
  background-image: url("../images/contact-pc.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}*/
#Contact {
  position: relative;
  height:1000px;
  text-align: center;
}
.Contact_title {
  font-size:  42vw;
  font-family: Century;
  font-weight: 400;
  color: #d7d7d7;
  opacity: 0.3;
  letter-spacing: 0.3rem;
  left: 40px;
  top: 10rem;
  position: fixed;
}
.Contact_text{
  font-size: 2.7rem;
  line-height: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
}
.Contact img{
  margin-top:3rem;
}
.fadeIn {
    opacity: 0;
    transform : translate(0, 10px);
    transition : 2s;
}
.fadeIn.animated {
    transform : translate(0, 0);
    opacity: 1;
}

@media screen and (max-width:534px){
  #Contact {
  height:1000px;
}
  .Contact_title{
    position: fixed;
    opacity: 0.5;
     left: 0px;
     top: 20rem;
  }
  .Contact_text{
    font-size: 2.3rem;
    width: 100%;
}
 .Contact img{
    width: 80%;
}
}