/*よくある質問ページ用*/
/* よくある質問ページ用：user-info スコープ */
.faq-Body .user-info-form-wrapper {  /* ← ラッパー名をこちらに統一 */
  max-width: 900px;
  margin: 0 auto;
}

.faq-Body .user-info-form-section {
  margin-bottom: 30px;
}

.faq-Body .user-info-section-title {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 12px;
  color: #333;
}

.faq-Body .user-info-btn-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.faq-Body .user-info-btn-wrapper {
  flex: 0 0 auto;
}

.faq-Body .user-info-btn {
  position: relative;
  border: 2px solid #0066cc;
  padding: 12px 24px;
  min-width: 200px;
  text-align: center;
  background-color: #fff;
  cursor: pointer;
  transition: background-color 0.3s;
  box-sizing: border-box;
}

.faq-Body .user-info-btn:hover {
  background-color: #f0f7ff;
}

.faq-Body .user-info-btn-link {
  position: absolute;
  inset: 0;          /* top/left/width/height のショートハンド */
  text-decoration: none;
  display: block;
}

.faq-Body .user-info-btn-text {
  color: #0066cc;
  font-weight: bold;
  font-size: 14px;
  position: relative;
  z-index: 1;
  pointer-events: none;
}



/*PCヘッダーお知らせ掲載用*/
/*
.header-notice-202511 {
  background-color: #fff8e1; /* 薄い黄色背景 */
  text-align: center;
  padding: 6px 10px;
  font-size: 12px;
  color: #333;
}

.header-notice-202511 p {
  margin: 0;
}
*/