@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700&display=swap");
body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  color: rgb(67, 65, 61);
}

img {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

@media screen and (min-width: 768px) {
  .page {
    width: 1000px;
    margin: 0 auto;
    padding: 40px;
  }
}
@media screen and (max-width: 767px) {
  .page {
    padding: calc(20 * 100vw / 440);
  }
}
.page h1 {
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page h1 {
    font-size: 32px;
  }
}
@media screen and (max-width: 767px) {
  .page h1 {
    font-size: calc(24 * 100vw / 440);
  }
}
.page form .item {
  margin-top: 30px;
}
.page form label {
  display: block;
  font-weight: bold;
  color: #333;
}
.page form input,
.page form textarea {
  width: 100%;
  margin: 12px 0 0;
  padding: 8px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  line-height: 1.4;
}
.page form textarea {
  resize: vertical;
}
.page .button-submit {
  background-color: #007bff;
  color: white;
  border: none;
  margin-top: 30px;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}
.page .button-submit:hover {
  background-color: #0056b3;
}
.page .error-message {
  margin-top: 20px;
  color: red;
}
@media screen and (min-width: 768px) {
  .page .thanks {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .page .thanks {
    font-size: calc(12 * 100vw / 440);
  }
}