/* Google Fontsの読み込み */
@import url("https://fonts.googleapis.com/css2?family=League+Spartan:wght@400;700&display=swap");

/* アコーディオン専用スタイル */
.ac-container {
  margin-top: 0;
  background: white;
  border-radius: 0;
  box-shadow: none;
}

.ac-item {
  margin-bottom: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  border-bottom: 1px solid #e0e0e0;
  transition: none;
}

.ac-item:hover {
  transform: none;
}

.ac-item:last-child {
  border-bottom: none;
}

.ac-header {
  background: white;
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  border-bottom: 1px solid #e0e0e0;
}

.ac-header:hover {
  background: #f5f5f5;
}

.ac-header h3 {
  font-size: 1.4rem;
  color: #00bcd4;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-shadow: none;
}

.ac-icon {
  font-size: 1.5rem;
  color: #00bcd4;
  font-weight: bold;
  transition: none; /* アニメーション削除 */
}

.ac-item.active .ac-header {
  background: white;
  border-bottom: none;
}

.ac-item.active .ac-header h3 {
  color: #00bcd4;
}

.ac-item.active .ac-icon {
  transform: none;
  color: #00bcd4;
}

.ac-content {
  background: #e0f7fa;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: none; /* アニメーション削除 */
  border: none;
}

.ac-item.active .ac-content {
  padding: 25px;
  max-height: none; /* 高さ制限を削除 */
}

.ac-content p {
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
  letter-spacing: 0.02em;
  margin: 0;
}

/* セクションヘッダー */
.section-header {
  background: #0097b2;
  color: rgba(255, 255, 255, 0.3);
  padding: 10px 20px 0px 20px;
  font-size: 4rem;
  font-weight: bold;
  font-family: "League Spartan", sans-serif; /* League Spartanフォントを適用 */
  letter-spacing: 0.1em;
  margin-bottom: 0;
  text-align: center;
}

.section-subtitle {
  background: #0097b2;
  color: white;
  padding: 0px 20px 10px 20px;
  font-size: 1.5rem;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .section-header {
    font-size: 2.5rem; /* スマホでのフォントサイズを調整 */
  }

  .section-subtitle {
    font-size: 1.1rem; /* 「安心して・・・」の部分を小さく */
  }

  .ac-header h3 {
    font-size: 1.1rem; /* 「コミコミ価格」などの部分を小さく */
  }

  .ac-header {
    padding: 15px 20px; /* パディングも調整 */
  }

  .ac-item.active .ac-content {
    padding: 20px; /* コンテンツのパディングも調整 */
  }
}

@media (max-width: 480px) {
  .section-header {
    font-size: 2rem; /* さらに小さなスマホでの調整 */
    padding: 8px 15px 0px 15px;
  }

  .section-subtitle {
    font-size: 1rem; /* さらに小さく */
    padding: 0px 15px 8px 15px;
  }

  .ac-header h3 {
    font-size: 1rem; /* さらに小さく */
  }

  .ac-header {
    padding: 12px 15px;
  }

  .ac-item.active .ac-content {
    padding: 15px;
  }

  .ac-content p {
    font-size: 0.9rem; /* コンテンツテキストも少し小さく */
  }
}
