@charset "UTF-8";


html {
  font-size: 100%;
}
body {
  color: #383e45;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.9rem;
  background-color: #A7A7A7;
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
}
li {
  list-style: none;
}


.container {
  max-width: 1000px;
  margin:0 auto;
  margin-bottom: 60px;
  padding: 0;
  text-align: center;
}

/* header */
#header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}

#header .site-title{
  margin: 0 auto;
  padding-top: 40px;
}

/* main */
.site-menu{
  margin: 0 auto;
  display: flex;
  justify-content: center;
  text-align: center;
}

.mein-service{
  display: block;
}

.clean-work{
  margin-top: 10px;
  padding: 15px;
}

/* アニメーションに関する記述 */


.site-menu{
  animation-name:fadeUpAnime;
  animation-duration:0.8s;
  animation-fill-mode:forwards;
  opacity: 0;
  }
  @keyframes fadeUpAnime{
    from {
      opacity: 0;
    transform: translateY(100px);
    }
  
    to {
      opacity: 1;
    transform: translateX(0);
    }
  }

  .clean-work{
    animation-name:fadeUpAnime;
    animation-duration:1.8s;
    animation-fill-mode:forwards;
    opacity: 0;
    }
    @keyframes fadeUpAnime{
      from {
        opacity: 0;
      transform: translateY(100px);
      }
    
      to {
        opacity: 1;
      transform: translateX(0);
      }
    }

/* .gear-link */

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

	.main-service{
		display: block
	}

  .container {
    max-width: 500px;
    margin:0 auto;
    margin-bottom: 60px;
    padding: 0;
    text-align: center;
  }
  .clean-work{
    max-width:480px;
    margin: 0 auto;
    padding: 0;
  }

}

/* footer */
footer{
  margin-top: 65px;
  text-decoration: none;
  background-color: #fff;
  text-align: center;
}