@charset "UTF-8";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
}

body {
  background: linear-gradient(135deg, #f5f5f5 0%, #e9e9e9 100%);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wrap {
  width: 100%;
  max-width: 550px; /* フォームエリアを拡大 */
  padding: 20px;
}

.Form {
  background-color: white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 50px 40px; /* パディングを増やしてフォーム内のスペースを拡大 */
  position: relative;
  overflow: hidden;
  min-height: 450px; /* 最小の高さを設定 */
}

.Form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #d4af37 0%, #f9e076 50%, #d4af37 100%);
}

h1 {
  color: #333;
  text-align: center;
  margin-bottom: 15px; /* マージン増加 */
  font-size: 32px; /* フォントサイズ拡大 */
  position: relative;
  padding-bottom: 20px;
}

h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px; /* 線を長く */
  height: 3px;
  background: linear-gradient(90deg, #d4af37 0%, #f9e076 100%);
}

h3 {
  color: #666;
  text-align: center;
  margin-bottom: 40px; /* マージン増加 */
  font-weight: 500;
  font-size: 18px; /* フォントサイズ拡大 */
}

.red {
  color: #e74c3c;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  padding: 12px;
  background-color: rgba(231, 76, 60, 0.1);
  border-radius: 4px;
}

.red2 {
  background-color: #e74c3c;
  color: #fff;
  margin-top: -30px;
  margin-bottom: 30px;
  font-size: 16px;
  text-align: center;
}

.Form-Item {
  margin-bottom: 35px; /* マージン増加 */
}

.Form-Item-Label {
  font-weight: bold;
  font-size: 17px; /* フォントサイズ拡大 */
  margin-bottom: 12px;
  color: #555;
}

.Form-Item-Input {
  width: 100%;
  border: none;
  border-bottom: 2px solid #d4af37;
  padding: 15px 10px; /* パディング増加 */
  font-size: 18px; /* フォントサイズ拡大 */
  background-color: #f8f8f8;
  border-radius: 4px 4px 0 0;
  transition: all 0.3s;
}

.Form-Item-Input:focus {
  outline: none;
  border-bottom-color: #b8860b;
  box-shadow: 0 1px 0 0 #b8860b;
  background-color: #fff;
}

.input-error {
  border-bottom-color: #e74c3c !important;
  background-color: rgba(231, 76, 60, 0.05) !important;
}

.Form-Btn {
  background: linear-gradient(135deg, #d4af37 0%, #f9e076 100%);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 18px 0; /* パディング増加 */
  width: 100%;
  font-size: 18px; /* フォントサイズ拡大 */
  font-weight: bold;
  cursor: pointer;
  margin-top: 20px; /* マージン増加 */
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  transition: all 0.3s;
  letter-spacing: 1px;
}

.Form-Btn:hover {
  background: linear-gradient(135deg, #b8860b 0%, #d4af37 100%);
  box-shadow: 0 6px 20px rgba(184, 134, 11, 0.4);
  transform: translateY(-2px);
}

a {
  display: block;
  text-align: center;
  margin-top: 25px; /* マージン増加 */
  color: #b8860b;
  text-decoration: none;
  font-size: 16px; /* フォントサイズ拡大 */
  transition: all 0.3s;
}

a:hover {
  color: #d4af37;
  text-decoration: underline;
}

@media screen and (max-width: 480px) {
  .Form {
    padding: 40px 25px;
  }
  h1 {
    font-size: 28px;
  }
}/*# sourceMappingURL=welcome.css.map */