* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Noto Sans JP", Arial, Helvetica, sans-serif;
}

body, .wrapper {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wrapper {
  width: 100%;
  display: flex;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: white;
  padding: 40px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  width: 50%;
  height: 100%;
  text-align: center;
}

.background {
  width: 50%;
  height: 100%;
  background: url("../assets/background.png") no-repeat center center/cover;
}

/* Typography */
h1 {
  font-size: 48px;
  margin-bottom: 10px;
  margin: 24px;
}

h4 {
  font-size: 32px;
  margin: 18px;
}

p {
  font-size: 16px;
  color: #555;
  margin: 8px;
}

.contact {
  margin-top: 20px;
  font-size: 14px;
  color: #333;
}

.contact a {
  color: #007bff;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 786px) {
  .wrapper {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: url("../assets/background.png") no-repeat center center/cover;
  }
  .content {
    border-radius: 8px;
    width: 90%;
    height: auto;
  }
  .background {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */
