/* 全体ボックス */
.ebook-cta-box {
  max-width: 900px;
  margin: 40px auto;
  padding: 25px;
  background: #fdf8f8;
  border: 3px solid #ff3b3b;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* キャッチコピー */
.ebook-cta-box__catch {
  font-size: 1.6rem;
  margin: 0 0 15px;
  color: #333;
  font-weight: normal;
}
.ebook-cta-box__catch strong {
  font-weight: 700;
}

/* ロゴ */
.ebook-cta-box__logo img {
  width: 250px;
  height: auto;
  margin-bottom: 24px;
}

/* おすすめ漫画一覧 */
.ebook-cta-box__recommended {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 10px 0;
  margin-bottom: 30px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.ebook-cta-box__recommended::-webkit-scrollbar { height: 6px; }
.ebook-cta-box__recommended::-webkit-scrollbar-track {
  background: #f1f1f1; border-radius: 10px;
}
.ebook-cta-box__recommended::-webkit-scrollbar-thumb {
  background: #888; border-radius: 10px;
}

/* 漫画カード */
.ebook-cta-box__manga-card {
  min-width: 160px;
  flex: 0 0 auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  text-align: center;
  padding: 12px;
  display: flex;
  flex-direction: column;
}

/* 画像 */
.ebook-cta-box__manga-img-container {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  margin-bottom: 10px;
  border-radius: 4px;
}
.ebook-cta-box__manga-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* 星 */
.ebook-cta-box__stars {
  color: #FFD700;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

/* 無料で読むボタン */
.ebook-cta-box__manga-btn {
  display: inline-block;
  padding: 8px 12px;
  background-color: #FF5757;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 700;
  transition: all 0.3s ease;
  margin-top: auto;
  box-shadow: 0 3px 0 rgba(180, 30, 30, 0.5);
}
.ebook-cta-box__manga-btn:hover {
  background-color: #ff1f1f;
  transform: translateY(2px);
  box-shadow: 0 1px 0 rgba(180, 30, 30, 0.5);
}

/* フッター */
.ebook-cta-box__footer {
  margin-top: 20px;
}
.ebook-cta-box__button-container {
  position: relative;
  padding-top: 15px;
  margin-bottom: 15px;
  display: inline-block;
}

/* サブコピー */
.ebook-cta-box__subcopy {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  background-color: #fff;
  color: #ff3b3b;
  border: 2px solid #ff3b3b;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  z-index: 1;
}

/* CTAメインボタン */
.ebook-cta-box__main-btn {
  display: inline-block;
  padding: 16px 40px;
  background-color: #ff3b3b;
  color: #fff !important;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 0 rgba(180, 30, 30, 0.5);
  margin-top: 10px;
}
.ebook-cta-box__main-btn:hover {
  background-color: #e52e2e;
  transform: translateY(2px);
  box-shadow: 0 2px 0 rgba(180, 30, 30, 0.5);
}

/* 注意事項 */
.ebook-cta-box__note {
  margin-top: 15px;
  font-size: 0.8rem;
  color: #666;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
  text-align: left;
  display: inline-flex;
  align-items: flex-start;
}
.ebook-cta-box__alert-icon {
  color: #ff8c00;
  margin-right: 5px;
  font-size: 1rem;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .ebook-cta-box { padding: 15px; }
  .ebook-cta-box__catch { font-size: 1.3rem; }
  .ebook-cta-box__logo img { width: 200px; }
  .ebook-cta-box__manga-card { min-width: 140px; padding: 10px; }
  .ebook-cta-box__manga-img-container { height: 180px; }
  .ebook-cta-box__subcopy { font-size: 0.9rem; padding: 5px 15px; }
  .ebook-cta-box__main-btn { padding: 14px 30px; font-size: 1.1rem; }
  .ebook-cta-box__note { max-width: 95%; font-size: 0.75rem; }
  .ebook-cta-box__alert-icon { font-size: 0.9rem; }
}


/* おすすめポイント表示 */
.ebook-cta-box__points {
  margin: 0 auto 25px;
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
  max-width: 700px;
  text-align: left;
}
