/* LP制作ページ専用CSS */

/* LP制作の課題と重要性セクション */
.lp-challenge-section {
  background: white;
  padding: 80px 20px;
  margin: 60px 0;
  border-radius: 20px;
  color: #2d3748;
}

.lp-challenge-section h3 {
  color: #2d3748;
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
  font-weight: bold;
}

.lp-challenge-badge {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  color: white !important;
  margin-left: 10px;
  padding: 8px 16px;
  border-radius: 20px;
}

.lp-challenge-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.lp-challenge-left h4 {
  color: #2d3748;
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: bold;
}

.lp-challenge-left p {
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 16px;
}

.lp-challenge-left ul {
  color: #4a5568;
  line-height: 2;
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.lp-challenge-left ul li {
  padding-left: 1.5em;
  position: relative;
  margin-bottom: 10px;
}

.lp-challenge-left ul li span {
  position: absolute;
  left: 0;
}

.lp-challenge-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cvr-funnel {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
  width: 100%;
  max-width: 400px;
}

.cvr-funnel-title {
  font-size: 18px;
  margin-bottom: 20px;
  color: white;
  text-align: center;
  font-weight: bold;
}

.cvr-funnel-steps {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.cvr-step {
  background: rgba(255, 255, 255, 0.2);
  padding: 15px;
  border-radius: 10px;
  font-size: 16px;
  text-align: center;
  color: white;
  transition: background 0.3s ease;
}

.cvr-step:hover {
  background: rgba(255, 255, 255, 0.3);
}

.cvr-conversion {
  background: rgba(255, 255, 255, 0.4);
  font-weight: bold;
}

.cvr-arrow {
  color: white;
  text-align: center;
  font-size: 20px;
}

.cvr-cta {
  background: #ffb300;
  color: #2d3748;
  padding: 20px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  line-height: 1.5;
}

/* /* 6種類のLPサービス詳細セクション */
.lp-service-types {
  margin: 80px auto;
  max-width: 1200px;
  padding: 60px 40px;
}

.lp-service-types h3 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 28px;
  font-weight: bold;
  color: #2d3748;
}

.lp-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
};
}

.lp-type-card-compact {
  background: white;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.lp-type-card-compact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.lp-type-card-compact:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(102, 126, 234, 0.2);
}

.lp-type-card-compact:hover::before {
  transform: scaleX(1);
}

.lp-type-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  box-shadow: 0 3px 12px rgba(102, 126, 234, 0.25);
}

.lp-type-card-compact h4 {
  margin: 0 0 12px 0;
  font-size: 18px;
  color: #2d3748;
  font-weight: bold;
}

.lp-type-desc {
  color: #667eea;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 20px;
  min-height: 40px;
}

.lp-type-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.lp.lp-type-tag {
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
  color: #4a5568;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}t;
}

.lp-type-tags span:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-color: #667eea;
  transform: translateY(-2px);
}

.lp-type-toggle {
  width: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 12px rgba(102, 126, 234, 0.25);
  margin-top: 4px;
}

.lp-type-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.lp-type-toggle:active {
  transform: translateY(0);
}

.lp-type-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.4s ease;
  margin-top: 0;
}

.lp-type-details.active {
  max-height: 1000px;
  margin-top: 20px;
}

.lp-type-detail-section {
  background: #f7fafc;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.lp-type-detail-section:last-child {
  margin-bottom: 0;
}

.lp-type-detail-section h5 {
  color: #667eea;
  font-size: 16px;
  margin: 0 0 12px 0;
  font-weight: bold;
}

.lp-type-detail-section ul {
  margin: 0;
  padding-left: 20px;
  color: #4a5568;
  line-height: 1.8;
}

.lp-type-detail-section ul li {
  margin-bottom: 8px;
  font-size: 14px;
}

.lp-type-detail-section ul li:last-child {
  margin-bottom: 0;
}

.lp-types-footer {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
}

.lp-types-footer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

.lp-types-footer strong {
  font-weight: bold;
  color: #ffb300;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .lp-types-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .lp-service-types h3 {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .lp-type-card-compact {
    padding: 25px;
  }

  .lp-type-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .lp-type-card-compact h4 {
    font-size: 20px;
  }

  .lp-type-desc {
    font-size: 13px;
    min-height: auto;
  }

  .lp-types-footer {
    padding: 20px;
  }

  .lp-types-footer p {
    font-size: 14px;
  }
}
/* レスポンシブ対応 */
@media (max-width: 768px) {
  .lp-challenge-section {
    padding: 40px 20px;
    margin: 30px 0;
  }

  .lp-challenge-section h3 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .lp-challenge-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lp-challenge-left h4 {
    font-size: 20px;
  }

  .cvr-funnel {
    padding: 30px 20px;
  }

  .cvr-funnel-title {
    font-size: 16px;
  }

  .cvr-step {
    font-size: 14px;
    padding: 12px;
  }

  .cvr-cta {
    font-size: 16px;
    padding: 15px;
  }

  .lp-type-card {
    padding: 30px 20px;
    margin-bottom: 30px;
  }

  .lp-type-card h4 {
    font-size: 22px;
  }

  .lp-type-card h5 {
    font-size: 16px;
  }

  .lp-type-card > div:nth-child(2) {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .lp-service-types h3 {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .lp-service-types > div:last-child {
    padding: 30px 20px;
  }

  .lp-service-types > div:last-child p {
    font-size: 16px;
  }
}

/* CVRファネル図のスタイル */
.infinity-feature-right > div {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.infinity-feature-right > div > div:first-child {
  font-size: 18px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.infinity-feature-right > div > div:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.infinity-feature-right > div > div:nth-child(2) > div:nth-child(odd) {
  background: rgba(255, 255, 255, 0.2);
  padding: 15px;
  border-radius: 10px;
  font-size: 16px;
  text-align: center;
}

.infinity-feature-right > div > div:nth-child(2) > div:nth-child(even) {
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  font-size: 20px;
}

.infinity-feature-right > div > div:last-child {
  background: #ffb300;
  color: #2d3748;
  padding: 20px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
}

/* infinity-feature-rowのレスポンシブ対応 */
.infinity-feature-row {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.infinity-feature-left,
.infinity-feature-right {
  flex: 1;
  min-width: 300px;
}

@media (max-width: 768px) {
  .infinity-feature-row {
    gap: 20px;
  }

  .infinity-feature-left,
  .infinity-feature-right {
    min-width: 100%;
  }

  .infinity-feature-right > div {
    padding: 30px 20px;
  }

  .infinity-feature-right > div > div:first-child {
    font-size: 16px;
  }

  .infinity-feature-right > div > div:nth-child(2) > div:nth-child(odd) {
    font-size: 14px;
    padding: 12px;
  }

  .infinity-feature-right > div > div:last-child {
    font-size: 16px;
    padding: 15px;
  }
}
