/* 共通スタイル定義 */

/* ベースのボタンスタイル */
.btn {
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 500;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  min-width: 150px;
}

/* プライマリボタン（白背景） */
.btn-primary {
  background-color: #1a1a1a;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #333333;
}

/* セカンダリボタン（枠線のみ） */
.btn-secondary {
  background-color: transparent;
  color: #1a1a1a;
  border: 1px solid #1a1a1a;
}

.btn-secondary:hover {
  background-color: rgba(26, 26, 26, 0.05);
}

/* 無効化状態 */
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ボタングループ */
.button-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

/* レスポンシブ対応 */
@media (max-width: 640px) {
  .button-group {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
}

/* 会員情報テーブル */
.profile-field {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.profile-label {
  color: #555555;
}

.profile-value {
  color: #1a1a1a;
}
