* {
  box-sizing: border-box;
}

html,
body {
  overscroll-behavior-y: none;
}

html {
  font-size: 62.5%;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  color: #000;
  background: #fff;
  line-height: 2;
  letter-spacing: 0.15em;
  text-align: justify;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
}

.site-header {
  width: min(1060px, 92vw);
  margin: 0 auto;
  padding: 32px 0 16px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.site-logo {
  font-size: 12px;
  letter-spacing: 6px;
  font-weight: 300;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
}

.site-logo-back {
  font-size: 20px;
  letter-spacing: 0;
}

.page {
  width: min(1060px, 92vw);
  margin: 0 auto;
  padding-bottom: 120px;
}

.page-hero {
  margin-top: 24px;
}

.page-eyebrow {
  margin: 0;
  font-size: 12px;
  letter-spacing: 6px;
  font-weight: 300;
  line-height: 1;
}

.page-title {
  font-size: 28px;
  letter-spacing: 10px;
  font-weight: 500;
  margin: 0 0 16px;
}

.contact {
  margin-top: 64px;
}

.contact-form {
  display: grid;
  gap: 20px;
  width: min(560px, 92vw);
  margin: 0 auto;
  border: 1px solid #d5d5d5;
  border-radius: 0;
  padding: 32px;
  background: #fff;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d5d5d5;
  padding: 12px 16px;
  font-size: 1.3rem;
  font-family: inherit;
  letter-spacing: 0.1em;
  line-height: 1.6;
}

.contact-form textarea {
  resize: vertical;
  min-height: 160px;
}

.submit-button {
  justify-self: center;
  padding: 12px 32px;
  border: 1px solid #000;
  background: #fff;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  font-weight: 500;
  cursor: pointer;
}

.submit-button:hover,
.submit-button:focus-visible {
  background: #5f5f5f;
  color: #fff;
}

.contact-success {
  width: min(560px, 92vw);
  margin: 24px auto 0;
  border: 1px solid #d5d5d5;
  padding: 20px 24px;
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  line-height: 1.8;
  background: #fafafa;
  display: none;
}

.contact-success p {
  margin: 0;
}

.contact-success p + p {
  margin-top: 8px;
}

.contact-success.is-visible {
  display: block;
}

.site-footer {
  padding: 40px 0 60px;
  text-align: center;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  color: #444;
  background: transparent;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 12px;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 900px) {
}

@media (max-width: 600px) {
  .site-header,
  .page {
    width: min(96vw, 560px);
  }

  .page-title {
    font-size: 24px;
  }

}
