/**
 * モダンなヘッダースタイル
 * クリーンなデザイン
 */

/* ========================================
   ヘッダー全体
   ======================================== */
.site-header {
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 100;
}

/* ========================================
   トップバー（キャッチフレーズエリア）
   ======================================== */
.header-topbar {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #ffffff;
  font-size: 11px;
  padding: 8px 0;
}

.topbar-container {
  width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  box-sizing: border-box;
}

.header-catchphrase {
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.header-message {
  margin: 0;
  font-size: 11px;
  opacity: 0.95;
}

/* ========================================
   メインヘッダー
   ======================================== */
.header-main {
  background-color: #ffffff;
  padding: 15px 0;
}

.header-container {
  width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  box-sizing: border-box;
}

/* ========================================
   ロゴ
   ======================================== */
.header-logo {
  flex-shrink: 0;
}

.header-logo a {
  display: block;
  line-height: 0;
  transition: opacity 0.3s ease;
}

.header-logo a:hover {
  opacity: 0.8;
}

.header-logo img {
  height: auto;
  max-width: 100%;
  display: block;
}

/* ========================================
   コンタクト情報エリア
   ======================================== */
.header-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* 電話番号 */
.header-tel {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background-color: #f8f9fa;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.header-tel:hover {
  background-color: #e9ecef;
  transform: translateY(-1px);
}

.tel-icon {
  color: #9d0000;
  flex-shrink: 0;
}

.tel-number {
  font-size: 18px;
  font-weight: bold;
  color: #1b1b1b;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.tel-number:hover {
  color: #9d0000;
}

/* CTAボタン */
.header-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #9d0000 0%, #c20000 100%);
  color: #ffffff;
  font-weight: bold;
  font-size: 14px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(157, 0, 0, 0.2);
}

.header-cta-button:hover {
  background: linear-gradient(135deg, #7d0000 0%, #9d0000 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(157, 0, 0, 0.3);
  color: #ffffff;
}

.header-cta-button:active {
  transform: translateY(0);
}

.button-icon {
  flex-shrink: 0;
}
