@charset "utf-8";

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

html {
  font-size: 16px;
  line-height: 1.6;
}

body {
  /* display: grid; */
  width: 100%;
  min-height: 100svh;
  background: url(images/bg.jpg) right / cover no-repeat;
  font-weight: 400;

  img {
    max-width: 100%;
    vertical-align: middle;
    overflow-clip-margin: unset;
    overflow: unset;
  }
}

.section-fv {
  padding: 100px 4rem;
  height: 600px;
  text-align: center;

  img {
    position: relative;
    animation: fade-b 1s .2s ease forwards;
    opacity: 0;
    height: 400px;
  }

  div {
    p {
      color: #fff;
      font-family: serif;
      font-size: 1.4rem;
      text-align: left;
      opacity: 0;
      animation: fade-b 1s .6s ease forwards;
    }
  }
}

main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2rem;
  padding: 100px 4rem;
  background: #fff;

  @media (max-width: 800px) {
    grid-template-columns: repeat(1, 1fr);
  }
}

footer {
  padding: 1rem 2rem;
  background: #fff;
  text-align: right;
}

article {
  .content-title {
    margin-top: 1rem;
    color: #aaa;
    font-size: 1.2rem;
    font-weight: 600;
  }
}


@keyframes fade-b {
  0% {
    opacity: 0;
    top: 2rem;
  }
  50% {
  }
  100% {
    opacity: 1;
    top: 0;
  }
}