@charset "utf-8";

*,
::before,
::after{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.recruit{
        padding: 90px 0 60px;
        color: #17191b;
}
.menu-card {
  width: 100%;
  margin-top: 35px;
  margin-bottom: 35px;
  animation-name: smoothAnime;
  animation-duration: 0ms;
  animation-fill-mode: forwards;
  transform-origin: left;
  opacity: 0;
  z-index: 0.1;

}

@keyframes smoothAnime {
  from {
    transform: translate3d(0, 100%, 0) skewY(12deg);
    opacity: 0;
  }

  to {
    transform: translate3d(0, 0, 0) skewY(0);
    opacity: 1;
  }
}



.menu-card-inner {
  padding: 25px 30px;
  background-color: #eae7ce;
  border-radius: 7px;
  box-shadow: 1px 1px 4px #cde2a9;
  text-align: center;
  margin: 0 20px;
}

.menu-image {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 5px;
}
.menu-title{
    margin-bottom: 8px;
    font-weight: 600;
}
.menu-text{
    font-size: 18px;
}
.menu-card-wrapper{
    display: flex;
    flex-wrap: wrap;
}
.delay-1{
  animation-delay: 0.2s;
}
.delay-2{
  animation-delay: 0.6s;
}
.delay-3{
  animation-delay: 1.0s;
}
.delay-4{
  animation-delay: 1.4s;
}
.delay-5{
  animation-delay: 1.8s;
}
.delay-6{
  animation-delay: 2.2s;
}
.delay-7{
  animation-delay: 2.6s;
}

.mod-botton a:hover{
  background-color: #dee2e5;
  transition: background-color 0.5
}
