@charset "utf-8";

body,
main,
div,
h1,
p,
img {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 16px;
}

main {
    height: 95vh;
}

.pre-renewal {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 40px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 2s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pre-renewal img {
    width: 300px;
    height: auto;
    overflow: cover;
}

.pre-renewal h1 {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #0644A7;
}

@media screen and (max-width: 768px) {
    .pre-renewal h1 {
        font-size: 16px;
    }
}

.pre-renewal>div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.pre-renewal>div a {
    text-decoration: none;
    color: #548052;
}


