/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

/* メインカラー */
.btn-main {
  background-color: darkorange !important;
  border-color: darkorange !important;
  color: white !important;
}
.btn-outline-main {
  color: darkorange !important;
  border-color: darkorange !important;
  background-color: white !important;
}
.bg-main {
  --bs-bg-opacity: 1;
  --bg-main-rgb: 255, 140, 0;
  background-color: rgba(var(--bg-main-rgb), var(--bs-bg-opacity)) !important;
}
.border-main {
  border-color: darkorange !important;
}
.text-main {
  color: darkorange !important;
}

/* 追加スタイル */
.min-vh-50 {
  min-height: 50vh;
}

.underline-main {
  border-bottom: 3px solid darkorange;
  padding-bottom: 0.5rem;
}

/* 固定ヘッダー対応 */
.page-content {
  padding-top: 56px; /* ナビゲーションバーの高さ */
}
