@charset "UTF-8";
/* CSS Document */
/* ===== 基本設定 ===== */
#episodes {
    margin: 0;
    padding: 30px 20px;
    color: #ffffff;
    background-image: url("../common_img/back03.svg");
	background-repeat: repeat;
    min-height: 80vh;
}

/* ===== セクション全体 ===== */
.episodes-section {
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== タイトル ===== */
.episodes-header h2 {
  font-size: 4.0rem;
  font-weight: bold;
  color: #FF69AE;
  text-align: center;
  line-height: 1.5;
}

.episodes-subtitle {
    color: #FF69AE;
	padding-bottom: 25px;
	text-align: center;
}
/* ===== カードのグリッドレイアウト ===== */
.episodes-grid {
    display: grid;
    /* 画面幅に応じて列数を自動調整 */
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 10px; /* カード間の余白 */
}

/* ===== エピソードカード（グラスモーフィズム） ===== */
.episode-card {
    border-radius: 16px;
    overflow: hidden; /* 角丸に合わせて画像を切り取り */
    
    /* ▼▼ グラスモーフィズム効果 ▼▼ */
    background: rgba(255, 255, 255, 70%); /* 半透明の背景 */
    backdrop-filter: blur(12px); /* 背景をぼかす（すりガラス効果） */
    -webkit-backdrop-filter: blur(12px); /* Safari対応 */
    border: 1px solid rgba(255, 255, 255, 0.18); /* 半透明の枠線 */
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15); /* 柔らかな影 */
}

/* ===== カード内部の要素 ===== */
.card-image-placeholder {
    height: 150px;
    background-color: rgba(255, 255, 255, 0.1); /* 画像の仮置き場 */
}

.card-content {
    padding: 13px;
}

.card-content h3 {
    font-size: 1.6rem;
    line-height: 1.5;
	height: 48px;
    margin: 0 0 10px 0;
	font-weight: 600;
	text-align: center;
	color: #666;
}

.card-content p {
    font-size: 2.2rem;
    line-height: 1.5;
    margin: 0;
	color: #FF69AE;
	text-align: center;
	font-weight: 600;
}

/* ===== レスポンシブ対応 ===== */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .episodes-grid {
        gap: 18px;
    }
	
	/* ===== タイトル ===== */
.episodes-header h2 {
  font-size: 3rem;
  font-weight: bold;
  color: #FF69AE;
  text-align: center;
  line-height: 1.5;
}

.episodes-subtitle {
    color: #FF69AE;
	padding-bottom: 25px;
	text-align: center;
}
}