* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #f7f4ff;
  color: #333;
}

.container {
  max-width: 740px;
  margin: 0 auto;
  padding: 20px;
}

.fv {
  text-align: center;
  padding: 40px 20px 20px;
  background: linear-gradient(to bottom, #d9c8ff, #f7f4ff);
  border-radius: 12px;
}
.fv .logo {
  font-size: 2.5rem;
  color: #5a3e85;
  margin: 0;
}
.fv .catch {
  font-size: 1.2rem;
  color: #666;
  margin-top: 10px;
}

.box {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  margin: 30px 0;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}

h2 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #5a3e85;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
form input {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}
form button {
  padding: 12px;
  background-color: #5a3e85;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}
form button:hover {
  background-color: #422e62;
}

.register-desc {
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: #555;
}

.btn-mail {
  display: inline-block;
  padding: 12px 20px;
  background-color: #5a3e85;
  color: #fff;
  border-radius: 6px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
}
.btn-mail:hover {
  background-color: #422e62;
}

.footer-links {
  text-align: center;
  margin-top: 40px;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.footer-links ul li a {
  color: #a08ad3;
  font-size: 0.9rem;
  text-decoration: none;
}
.footer-links ul li a:hover {
  text-decoration: underline;
}
.footer-links .copyright {
  font-size: 0.8rem;
  color: #999;
  margin-top: 20px;
}

@media (max-width: 480px) {
  .fv .logo {
    font-size: 2rem;
  }

  .fv .catch {
    font-size: 1rem;
  }
}
.info-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 16px;
  font-size: 1rem;
  line-height: 1.8;
}
.info-table tr {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}
.info-table th, .info-table td {
  padding: 16px;
  text-align: left;
  vertical-align: top;
}
.info-table th {
  width: 30%;
  background-color: #f6f0ff;
  color: #5a3e85;
  font-weight: 600;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.info-table td {
  background-color: #fff;
  color: #333;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

@media (max-width: 480px) {
  .info-table {
    border-spacing: 0 12px;
  }
  .info-table th,
.info-table td {
    display: block;
    width: 100%;
    padding: 12px;
    border-radius: 0;
  }
  .info-table tr {
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  }
}
.policy-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}
.policy-text h2 {
  font-size: 1.1rem;
  color: #5a3e85;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}
.policy-text ul {
  padding-left: 1.2em;
  margin-bottom: 1em;
}
.policy-text ul li {
  list-style: disc;
  margin-bottom: 0.3em;
}
.policy-text p {
  margin-bottom: 1em;
}

/*# sourceMappingURL=style.css.map */
