/* イクポンについてページのスタイルシート */
.about-ikupon {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  font-family: 'Noto Sans JP', Arial, sans-serif;
  line-height: 1.6;
}

.page-title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #333;
  border-bottom: 3px solid #007bff;
  padding-bottom: 15px;
}

.intro-section {
  text-align: center;
  margin-bottom: 50px;
}

.intro-text {
  font-size: 18px;
  color: #666;
  margin: 0;
}

.section-title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin: 40px 0 30px 0;
  color: #333;
}

.points-section {
  margin-bottom: 50px;
}

.points-list {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.point-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 15px 0;
  border-bottom: 1px solid #dee2e6;
}

.point-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.point-number {
  background: #007bff;
  color: white;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 15px;
  flex-shrink: 0;
  font-size: 14px;
}

.point-text {
  font-size: 16px;
  color: #333;
  padding-top: 3px;
}

.services-section {
  margin-bottom: 50px;
}

.services-list {
  list-style: none !important;
  list-style-type: none !important;
  padding: 20px 30px;
  margin: 0;
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  display: block !important;
  width: 100%;
  box-sizing: border-box;
}

.services-list li {
  display: block !important;
  width: 100% !important;
  font-size: 16px;
  color: #333;
  padding: 8px 0;
  margin: 0 !important;
  border-bottom: 1px dotted #ccc;
  line-height: 1.5;
  float: none !important;
  clear: both !important;
  position: static !important;
  flex: none !important;
  text-align: left;
  box-sizing: border-box;
}

.services-list li:before {
  content: "" !important;
}

.services-list li:after {
  content: "" !important;
  display: block;
  clear: both;
}

.services-list li:last-child {
  border-bottom: none;
}

.link-section {
  text-align: center;
  margin-bottom: 60px;
}

.link-text {
  font-size: 16px;
  color: #666;
  margin: 0;
}

.link-partners {
  color: #007bff;
  text-decoration: underline;
  font-weight: bold;
}

.link-partners:hover {
  color: #0056b3;
}

.app-download {
  text-align: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 40px 20px;
  border-radius: 12px;
  color: white;
}

.download-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 30px;
  color: white;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.app-store-btn,
.google-play-btn {
  display: block;
  transition: transform 0.3s ease;
}

.app-store-btn:hover,
.google-play-btn:hover {
  transform: scale(1.05);
}

.app-store-btn img,
.google-play-btn img {
  height: 60px;
  width: auto;
  border-radius: 8px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .about-ikupon {
    padding: 15px;
  }
  
  .page-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  
  .intro-text {
    font-size: 16px;
  }
  
  .section-title {
    font-size: 20px;
    margin: 30px 0 20px 0;
  }
  
  .points-list {
    padding: 20px;
  }
  
  .point-item {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .point-number {
    margin-bottom: 10px;
    margin-right: 0;
  }
  
  .point-text {
    font-size: 14px;
  }
  
  .services-list {
    padding: 15px 20px;
  }
  
  .services-list li {
    font-size: 14px;
  }
  
  .download-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .app-store-btn img,
  .google-play-btn img {
    height: 50px;
  }
}

@media (max-width: 480px) {
  .page-title {
    font-size: 20px;
  }
  
  .point-text {
    font-size: 13px;
  }
  
  .services-list li {
    font-size: 13px;
  }
  
  .download-title {
    font-size: 18px;
  }
}