body {
  font-family: "Noto Sans JP", sans-serif;
  background-color: #fff;
  margin: 0;
  padding: 0;
  color: #1C1C1C;
}

header {
    text-align: center;
}

.form-area h1 {
    text-align: center;
    font-size: 28px;
}

.wrapper {
  max-width: 780px;
  margin: 0 auto;
  padding: 20px;
}

.logo {
  max-width: 180px;
}

h1 {
  font-size: 22px;
  margin-bottom: 20px;
}

.steps {
  display: flex;
  gap: 10px;
}

.info {
    color: #707070;
    font-size: 14px;
    margin-bottom: 20px;
    display: flex;
    margin-top: 5px;
    justify-content: end;
}

.step {
  flex: 1;
  padding: 15px 10px;
  border: 1px solid #063191;
  background: #fff;
  color: #063191;
  cursor: default;
  font-size: 16px;
}

.step.active {
  background: #063191;
  color: #fff;
}

.notice {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #E2E2E2;
}
.notice a {
    font-size: 18px;
    font-weight: bold;
    color: #1C1C1C;
}
.consent {
  margin-bottom: 15px;
}

.actions {
  margin-bottom: 20px;
}

#submitBtn {
    background: #063191;
    color: #fff;
    padding: 10px 30px;
    border: none;
    cursor: not-allowed;
    opacity: 0.5;
    width: 100%;
    font-size: 20px;
}

#submitBtn.enabled {
  cursor: pointer;
  opacity: 1;
}

.copy-area {
  background: #D5E1F2;
  padding: 15px;
}

.cta-area {
    max-width: 60%;
    margin: 0 auto;
}

.copy-area h2 {
    font-size: 16px;
    text-align: center;
}

.copy-area p {
    font-size: 14px;
}

.copy-box {
    padding: 10px clamp(1.875rem, -0.355rem + 4.64vw, 3.125rem);
}

#copyText {
  background: #fff;
  padding: 10px;
  border: 1px solid #ccc;
  margin: 10px 0 0;
  white-space: pre-wrap;
}

#copyBtn {
    border: none;
    cursor: pointer;
    background-color: inherit;
    display: flex;
    width: 100%;
    justify-content: end;
    margin-top: 10px;
}

@media (max-width:468px) {
    .form-area h1 {
        font-size: 24px;
    }
    .steps {
        flex-direction: column;
    }
    .cta-area {
        max-width: 100%;
    }
    .copy-box {
        padding: 10px 0;
    }
}

