/*
Theme Name: Cocoon Child
Template: cocoon-master
Author: wp-cocoon.com
Version: 1.0.0
Description: Cocoonの子テーマ
*/

/* ↓ここから自由にカスタマイズOK ↓ */

/* =====================================
   EroManga風：左右フェード付き矢印
   ===================================== */
.freechara-single {
  background-color: #fff;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.entry-header {
  text-align: center;
  margin-bottom: 20px;
}

.entry-title {
  font-size: 1.8em;
  font-weight: bold;
  color: #333;
  border-bottom: 3px solid #ff5a91;
  display: inline-block;
  padding-bottom: 5px;
}

.eyecatch-area {
  position: relative;
  text-align: center;
  margin: 30px auto;
  max-width: 700px;
  overflow: hidden;
  border-radius: 8px;
}

.eyecatch-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* フェードゾーン（左右の黒グラデーション） */
.fade-zone {
  position: absolute;
  top: 0;
  width: 25%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.3s;
  z-index: 5;
}

/* 左右それぞれのグラデーション */
.fade-zone.left {
  left: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.6), transparent);
}

.fade-zone.right {
  right: 0;
  background: linear-gradient(to left, rgba(0,0,0,0.6), transparent);
}

.fade-zone:hover {
  background: rgba(0,0,0,0.3);
}

/* 矢印スタイル */
.arrow {
  font-size: 48px;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 0 10px rgba(0,0,0,0.6);
}

/* ボタン */
.freechara-btn-area {
  text-align: center;
  margin: 25px 0;
}

.read-button {
  display: inline-block;
  background-color: #ff5a91;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.2s;
}

.read-button:hover {
  background-color: #ff2e70;
}
.breadcrumb {
  font-size: 14px;
  margin-bottom: 20px;
  color: #666;
}
.breadcrumb a {
  color: #666;
  text-decoration: none;
}
.breadcrumb a:hover {
  color: #ff5a91;
}
.breadcrumb .breadcrumb-item + .breadcrumb-item:before {
  content: "›";
  margin: 0 6px;
  color: #ccc;
}
.related-entries {
  margin-top: 40px;
  border-top: 1px solid #e5e5e5;
  padding-top: 30px;
}
.related-entry-card {
  display: block;
  margin-bottom: 20px;
  text-decoration: none;
  color: #333;
}
.related-entry-card:hover .related-entry-card-title {
  color: #ff5a91;
}
.related-entry-card-thumb img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
