:root {
  --primary-color: #004098; /* オリコ系の信頼感あるブルー */
  --secondary-color: #FFD200; /* 注意・アクセントのイエロー */
  --accent-color: #E63946; /* CTA用の赤 */
  --bg-dark: #1A1A1A; /* 車系によく合うダークグレー */
  --bg-light: #F8F9FA;
  --text-dark: #333333;
  --text-white: #FFFFFF;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
}

/* PR表記 */
.pr-label {
  background-color: #eee;
  color: #888;
  text-align: center;
  font-size: 0.7rem;
  padding: 4px 0;
}

/* === ヒーローセクション === */
.hero {
  position: relative;
  min-height: 100vh; /* 高さ設定を80から100へ拡大 */
  padding: 100px 0; /* 上下に強制的に余白を追加 */
  background: url('orico_car_hero.png') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4); /* 画像を見やすくするためのオーバーレイ */
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  padding: 0 20px;
}
.hero-tag {
  background-color: var(--secondary-color);
  color: #000;
  padding: 5px 15px;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 3px;
  margin-bottom: 20px;
  display: inline-block;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

/* === セクション共通 === */
.section {
  padding: 80px 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 50px;
}
.section-title span {
  display: block;
  font-size: 1rem;
  color: #888;
  margin-top: 10px;
}

/* === 3つのポイント === */
.points-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.point-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s ease;
}
.point-card:hover { transform: translateY(-5px); }
.point-number {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(0, 64, 152, 0.1);
  margin-bottom: -20px;
}
.point-card h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

/* === 料金・オファー === */
.cta-box {
  background-color: var(--primary-color);
  color: #fff;
  padding: 60px 40px;
  border-radius: 20px;
  text-align: center;
  margin-top: 50px;
}
.cta-box h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.price-tag {
  font-size: clamp(2rem, 8vw, 4rem);
  font-weight: 900;
  color: var(--secondary-color);
  margin: 20px 0;
}
.price-tag span { font-size: 1.5rem; color: #fff; }

/* === ヒーローセクション内 広告エリア修正 === */
.hero-ad-area {
  margin-top: 40px;
  margin-bottom: 50px; /* 下方向への余白を強化 */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}
.banner-wrapper {
  display: inline-block;
  line-height: 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  border-radius: 8px;
  overflow: hidden;
}
.hero-text-link {
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 1.3rem;
  text-decoration: none;
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 5px;
  transition: all 0.3s ease;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
  display: inline-block;
}
.hero-text-link:hover {
  color: #fff;
  border-bottom-color: #fff;
  transform: translateY(-2px);
}

/* === ボタン === */
.btn-main {
  display: inline-block;
  background-color: var(--accent-color);
  color: #fff;
  padding: 20px 50px;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 10px 20px rgba(230, 57, 70, 0.3);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}
.btn-main:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(230, 57, 70, 0.4);
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

/* === レスポンシブ === */
/* === 広告表示補助 === */
.pc-only { display: block; }
.sp-only { display: none; }

@media (max-width: 768px) {
  .pc-only { display: none; }
  .sp-only { display: block; }
}

@media (max-width: 768px) {
  .hero { height: 60vh; }
  .section { padding: 50px 20px; }
  .point-card { padding: 30px 20px; }
}
