/* ===== ベース ===== */
body {
  margin: 0;
  background: #f5f3ff; /* うっすら紫がかった優しい背景 */
  color: #444;
  font-family: 'FlopDesign', sans-serif;
  text-align: center;
  line-height: 1.7;
}

/* ===== タイトル ===== */
.page-title {
  font-size: 2.6rem;
  margin: 45px 0 35px;
  color: #845ef7; /* ポップな紫 */
  letter-spacing: 1.5px;
  font-weight: 700;
  text-shadow: 0 4px 10px rgba(132, 94, 247, 0.25);
}

/* ===== コミックビューア ===== */
.comic-viewer {
  display: flex;
  justify-content: center;
  padding-bottom: 60px;
}

.comic-container {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 92%;
  max-width: 860px;
}

/* ===== 各ページ ===== */
.comic-panel {
  width: 100%;
  display: flex;
  justify-content: center;
}

.comic-panel img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15); /* 明るめの影 */
  transition: transform 0.25s ease, filter 0.25s ease;
  filter: brightness(0.98);
}

.comic-panel img:hover {
  transform: scale(1.02);
  filter: brightness(1.06);
}

/* ===== BACKボタンエリア ===== */
.back-home {
  margin: 60px auto 40px;
}

/* ===== ボタン ===== */
.home-button {
  display: inline-block;
  padding: 14px 42px;
  border: none;
  border-radius: 14px;
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  letter-spacing: 1.2px;
  transition: all 0.3s ease;
  background-color: #ff8ce6; /* 明るいポップピンク */
  box-shadow: 0 4px 12px rgba(255, 140, 230, 0.4);
}

.home-button:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 6px 18px rgba(255, 140, 230, 0.55);
}

/* ===== フッター ===== */
.comic-footer {
  padding: 25px;
  font-size: 0.9rem;
  color: #666;
  border-top: 1px solid #ddd;
  letter-spacing: 1px;
  background-color: #faf7ff;
}

/* ===== スクロール調整 ===== */
html {
  scroll-behavior: smooth;
}

/* ===== モバイル対応 ===== */
@media (max-width: 600px) {
  .page-title {
    font-size: 2rem;
  }

  .home-button {
    padding: 10px 28px;
    font-size: 1rem;
  }
}
