/* ================================================
   パートナーシップページ専用CSS
   ファイル名: partnerships-page.css
   配置先: /wp-content/themes/horiprospeed/partnerships-page.css
   ================================================ */

/* パートナーシップページ専用コンテナ */
.partnerships-wrapper {
  background: #fff;
  padding: 0;
}

/* パートナーセクション */
.partners-section {
  padding: 80px 0;
  background: #fafafa;
}

.partners-section .section-title {
  font-size: 28px;
  text-align: center;
  margin-bottom: 15px;
  font-weight: 600;
  color: #111;
}

.partners-section .section-subtitle {
  text-align: center;
  color: #666;
  font-size: 15px;
  margin-bottom: 50px;
}

/* パートナーグリッド */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 1024px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .partners-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* パートナーカード */
.partner-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 35px 30px;
  transition: all 0.3s ease;
  position: relative;
}

.partner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #111;
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.partner-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.partner-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
  color: #111;
  font-weight: 700;
}

.partner-location {
  display: inline-block;
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
  padding: 4px 12px;
  background: #f5f5f5;
  border-radius: 20px;
}

.partner-card p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 15px;
}

.partner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.partner-tag {
  background: #f0f0f0;
  color: #333;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

/* 実績セクション */
.achievements-section {
  background: #fff;
  padding: 80px 0;
}

.achievements-section .section-title {
  font-size: 28px;
  text-align: center;
  margin-bottom: 15px;
  font-weight: 600;
  color: #111;
}

.achievements-section .section-subtitle {
  text-align: center;
  color: #666;
  font-size: 15px;
  margin-bottom: 50px;
}

/* 実績グリッド */
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 900px) {
  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .achievements-grid {
    grid-template-columns: 1fr;
  }
}

.achievement-card {
  background: #fafafa;
  border: 1px solid #eee;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.achievement-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.achievement-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}

.achievement-card h3 {
  font-size: 16px;
  color: #111;
  margin-bottom: 10px;
  font-weight: 600;
}

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

/* 推薦文セクション */
.testimonials-section {
  background: #fafafa;
  padding: 80px 0;
}

.testimonials-section .section-title {
  font-size: 28px;
  text-align: center;
  margin-bottom: 15px;
  font-weight: 600;
  color: #111;
}

.testimonials-section .section-subtitle {
  text-align: center;
  color: #666;
  font-size: 15px;
  margin-bottom: 50px;
}

/* 推薦文グリッド */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 35px 30px;
  position: relative;
  border-left: 4px solid #111;
}

.testimonial-quote {
  font-size: 3rem;
  color: #e0e0e0;
  line-height: 1;
  margin-bottom: 15px;
  font-family: Georgia, serif;
}

.testimonial-text {
  color: #555;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  color: #111;
  font-weight: 600;
  font-size: 14px;
}

/* CTAセクション */
.cta-section {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.cta-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 600;
}

.cta-section p {
  font-size: 16px;
  margin-bottom: 35px;
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.cta-button {
  display: inline-block;
  background: #fff;
  color: #111;
  padding: 14px 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.cta-button::after {
  content: ' →';
  margin-left: 8px;
  transition: margin-left 0.3s ease;
}

.cta-button:hover::after {
  margin-left: 12px;
}
