/* 
 * payment.css
 * 決済ページ用のスタイル
 */

/* 決済セクション */
#secPayment {
  padding: 60px 0;
  background-color: #f9f9f9;
}

/* 現在のステータスボックス */
.current_status_box {
  background: #fff;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 3rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.current_status_box h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text);
  text-align: center;
}

.status_info {
  text-align: center;
}

.status_info p {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #495057;
}

.status_info strong {
  color: var(--text);
}

/* 特典ボックス */
.benefits_box {
  background: #fff;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 3rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.benefits_box h2 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--text);
  text-align: center;
}

.benefits_grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 1rem;
}

.benefit_item {
  text-align: center;
}

.benefit_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: #f8f9fa;
  border-radius: 50%;
  margin-bottom: 1rem;
  color: var(--main);
}

.benefit_item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.benefit_item p {
  color: #6c757d;
  line-height: 1.6;
}

/* 料金ボックス */
.pricing_box {
  margin-bottom: 3rem;
}

.pricing_box h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text);
  text-align: center;
}

.pricing_description {
  text-align: center;
  color: #6c757d;
  margin-bottom: 2rem;
}

.pricing_cards {
  display: grid;
  gap: 2rem;
  margin-bottom: 1rem;
}

.pricing_card {
  background: #fff;
  border-radius: 8px;
  padding: 2.5rem 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.pricing_card.recommended {
  border: 2px solid var(--main);
}

.recommended_badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--main);
  color: #fff;
  padding: 0.5rem 2rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: bold;
}

.pricing_card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.price {
  margin-bottom: 1rem;
}

.price .amount {
  font-size: 3rem;
  font-weight: bold;
  color: var(--main);
}

.price .unit {
  font-size: 1.25rem;
  color: #6c757d;
}

.save_info {
  background-color: #fff3cd;
  color: #856404;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.price_features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.price_features li {
  padding: 0.5rem 0;
  color: #6c757d;
  position: relative;
  padding-left: 1.5rem;
}

.price_features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--main);
  font-weight: bold;
}

/* PayPalボタン */
.paypal_button {
  margin-top: 2rem;
}

.paypal_button form {
  display: inline-block;
}

/* 注意事項 */
.payment_notes {
  background: #fff;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 3rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.payment_notes h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text);
  border-bottom: 2px solid var(--main);
  padding-bottom: 0.5rem;
}

.payment_notes ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.payment_notes li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #495057;
  line-height: 1.6;
}

.payment_notes li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--main);
  font-weight: bold;
}

/* FAQ セクション */
.faq_section {
  background: #fff;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 3rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq_section h3 {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--text);
  border-bottom: 2px solid var(--main);
  padding-bottom: 0.5rem;
}

.faq_list {
  margin: 0;
}

.faq_item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e9ecef;
}

.faq_item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.faq_item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--text);
  position: relative;
  padding-left: 1.5rem;
}

.faq_item h4::before {
  content: "Q.";
  position: absolute;
  left: 0;
  color: var(--main);
  font-weight: bold;
}

.faq_item p {
  color: #495057;
  line-height: 1.6;
  padding-left: 1.5rem;
}

/* レスポンシブ対応 */
@media (min-width: 768px) {
  #secPayment {
    padding: 80px 0;
  }
  
  .benefits_grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .pricing_cards {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  #secPayment {
    padding: 40px 0;
  }
  
  .current_status_box,
  .benefits_box,
  .pricing_card,
  .payment_notes,
  .faq_section,
  .contact_section {
    padding: 1.5rem;
  }
  
  .current_status_box h2,
  .benefits_box h2,
  .pricing_box h2 {
    font-size: 1.25rem;
  }
  
  .benefit_icon {
    width: 60px;
    height: 60px;
  }
  
  .benefit_item h3 {
    font-size: 1.1rem;
  }
  
  .pricing_card h3 {
    font-size: 1.25rem;
  }
  
  .price .amount {
    font-size: 2.5rem;
  }
  
  .price .unit {
    font-size: 1rem;
  }
  
  .recommended_badge {
    font-size: 0.75rem;
    padding: 0.375rem 1.5rem;
  }
}

@media (max-width: 576px) {
  .benefit_item p {
    font-size: 0.875rem;
  }
  
  .price_features li {
    font-size: 0.875rem;
  }
  
  .payment_notes h3,
  .faq_section h3,
  .contact_section h3 {
    font-size: 1.1rem;
  }
  
  .faq_item h4 {
    font-size: 1rem;
  }
  
  .faq_item p {
    font-size: 0.875rem;
  }
}

/* アニメーション */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.benefits_grid,
.pricing_cards,
.faq_list {
  animation: fadeInUp 0.6s ease-out;
}

/* ビジネス会員向け特典ボックス */
.business_features {
  background: #fff;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 3rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.business_features h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text);
  border-bottom: 2px solid var(--main);
  padding-bottom: 0.5rem;
}

.business_features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.business_features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #495057;
  line-height: 1.6;
}

.business_features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--main);
  font-weight: bold;
}

.payment_lead{
  font-size:1rem;
}
@media (min-width: 768px) {
  .payment_lead{
	font-size:1.25rem;
  }
}