@charset "utf-8";
/* CSS Document */

body {
      background-color: #f8f8f8;
      margin: 0;
      padding: 0;
    }
    .wrap {
      max-width: 600px;
      margin: 20px auto;
      padding: 20px;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }
    h2 {
      font-size: 1.5rem;
      margin-bottom: 10px;
    }
    .form-group {
      margin-bottom: 16px;
      display: flex;
      flex-direction: column;
    }
    label {
      margin-bottom: 5px;
      font-weight: bold;
    }
    .required {
      color: red;
    }
    input[type="text"], input[type="tel"], input[type="email"], textarea {
      padding: 10px;
      font-size: 16px;
      border: 1px solid #ccc;
      border-radius: 4px;
      width: 100%;
      box-sizing: border-box;
    }
    textarea {
      resize: vertical;
    }
    .checkbox-group {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 10px;
    }
    .submit-button {
      background-color: #0086cd;
      color: white;
      padding: 15px;
      font-size: 16px;
      border: none;
      border-radius: 5px;
      width: 100%;
      cursor: pointer;
    }
    .note {
      font-size: 14px;
      color: #555;
    }

	.checkbox-group {
	  display: flex;
	  flex-direction: column;
	  align-items: flex-start;
	  gap: 6px;
	}

.form-group a {
  color: #007bff;
  text-decoration: underline;
}
.form-group a:hover {
  color: #0056b3;
  text-decoration: none;
}


