/* support.css */

/* 全体 */
body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background-color: #f8f9fa;
  margin: 0;
  padding: 20px;
  text-align: center;
}

/* ヘッダー */
.header {
  position: relative;
  width: 100%;
  height: 60px;
  background: linear-gradient(45deg, #4facfe, #00f2fe);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-title {
  color: white;
  font-size: 22px;
  margin: 0;
}

/* サポートボタン一覧 */
.support-container {
  margin-top: 40px;
}

.support-button {
  display: block;
  width: 80%;
  max-width: 300px;
  margin: 15px auto;
  padding: 12px 20px;
  font-size: 18px;
  color: white;
  background: linear-gradient(45deg, #43e97b, #38f9d7);
  border: none;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.support-button:hover {
  background: linear-gradient(45deg, #38f9d7, #43e97b);
  transform: translateY(-2px);
}

/* フッター */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 5px 0;
}

.footer img {
  width: 30px;
  height: 30px;
}
