html, body {
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #fff;
  color: #333333;
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
  height: 100%;
  /* align-items, justify-content を削除 */
}

/* ヘッダーのスタイル */
header {
  background-color: #d6d6d6; 
  color: #000;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

header img {
  margin-right: 30px;
  height: 80px;
}

/* フォームのスタイル */
.form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 50px;
}

/* ボタンのスタイル */
.btn {
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #BBDED6, #8EC5FC);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #8EC5FC, #BBDED6); /* 色反転 */
}

@media (max-width: 480px) {
  .btn {
    font-size: 1rem;
    padding: 0.9rem 2rem;
  }
}

/* ヘッダー内のタイトル */
h4 {
  text-align: center;
  margin: 80px 20px 20px 10px;
}

/* フッターのスタイル */
.footer {
  background-color: #d6d6d6;
  padding: 20px;
  text-align: center;
  margin-top: 40px;
}

.footer-info {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  font-size: 14px;
  line-height: 0.5;
  width: fit-content;
  padding-left: 1em;
  padding-right: 1em;
}

.footer-info li {
  margin: 0;
  padding: 0;
  font-size: 14px;
  text-align: left;
}

/* 会社ロゴのスタイル */
.company-logo {
  width: 80px;
  height: auto;
  vertical-align: middle;
}

.copyright {
  font-size: 12px;
  margin-top: 10px;
}

/* 一般的なボタンスタイル */
.universal-btn {
  display: inline-block;
  background-color: #4A90E2;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.universal-btn:hover {
  background-color: #357ABD;
  transform: translateY(-2px);
}

/* お問い合わせメモ */
.contact-note {
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 80px 20px 20px 10px;
  color: #444;
}

@media (max-width: 480px) {
  .contact-note {
    font-size: 1rem;
    margin: 40px 15px 10px;
  }

  .mobile-break {
    display: block; /* モバイル時に改行 */
  }
}

/* 見出しのスタイル */
h2 {
  font-size: 2rem;
  line-height: 1.2;
  text-align: center;
  margin: 20px 0;
  color: #333;
}

@media (max-width: 480px) {
  h2 {
    font-size: 1.5rem;
    line-height: 0.7;
  }
}
