/* 購入仲介マスター トップページのスタイル */

/* ヘッダーは共通コンポーネントのスタイルを使用 */

/* メインビジュアル */
.master-hero {
  background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
  padding: 80px 20px;
  text-align: center;
}

.hero-title {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 20px;
  color: #333;
}

.hero-title .highlight {
  color: #E60012;
}

.hero-subtitle {
  font-size: 18px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  background: #E60012;
  color: white;
  padding: 15px 40px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s;
  min-width: 250px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  box-sizing: border-box;
}

.btn-primary:hover {
  background: #cc0010;
  transform: translateY(-2px);
}

.btn-secondary {
  background: white;
  color: #E60012;
  padding: 15px 40px;
  border: 2px solid #E60012;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s;
  min-width: 250px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  box-sizing: border-box;
}

.btn-secondary:hover {
  background: #E60012;
  color: white;
}

/* 統計情報 */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  max-width: 600px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-number {
  font-size: 48px;
  font-weight: bold;
  color: #E60012;
  margin-bottom: 5px;
  position: relative;
}

.stat-asterisk {
  font-size: 24px;
  position: absolute;
  top: -5px;
  margin-left: 2px;
}

.stat-label {
  font-size: 16px;
  color: #666;
  margin-bottom: 5px;
}

.stat-note {
  font-size: 12px;
  color: #999;
  line-height: 1.4;
}

/* 特徴セクション */
.features-section {
  padding: 80px 20px;
  background: white;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 60px;
  color: #333;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.feature-card {
  text-align: center;
  padding: 40px 30px;
  background: #f9f9f9;
  border-radius: 12px;
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 64px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
}

.feature-card p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

/* コンテンツ紹介 */
.content-section {
  padding: 80px 20px;
  background: #f8f8f8;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.content-card {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.content-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

.content-description {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.content-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.content-list li {
  padding: 10px 0;
  padding-left: 25px;
  position: relative;
  color: #666;
}

.content-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #E60012;
  font-weight: bold;
}

.content-link {
  color: #E60012;
  font-weight: bold;
  text-decoration: none;
  font-size: 18px;
}

.content-link:hover {
  text-decoration: underline;
}

/* CTA */
.cta-section {
  background: #E60012;
  padding: 80px 20px;
  text-align: center;
  color: white;
}

.cta-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  background: white;
  color: #E60012;
  padding: 15px 40px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: transform 0.3s;
}

.cta-button:hover {
  transform: scale(1.05);
}

/* フッター */
.master-footer {
  background: #333;
  color: white;
  padding: 40px 0;
  text-align: center;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-logo {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-nav {
  margin-bottom: 20px;
}

.footer-nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-size: 14px;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.footer-company {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 10px;
}

.copyright {
  font-size: 12px;
  color: #999;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-stats {
    gap: 30px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .content-grid {
    grid-template-columns: 1fr;
  }
}