/* ヒーローセクションの基本スタイル */
.podcast-hero {
    position: relative;
    min-height: 80vh;
    background: var(--front-hero-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 4rem 0 2rem 0;
}

/* モバイル最適化: ヒーロー高さを大幅削減 */
@media (max-width: 968px) {
    .podcast-hero {
        min-height: 65vh;
        padding: 2.5rem 0 1.2rem 0;
    }
}

/* フロントページ特有のモバイル調整 */
@media (max-width: 768px) {
    .podcast-hero {
        min-height: 60vh;
        padding: 2rem 0 0.8rem 0;
    }
}

@media (max-width: 480px) {
    .podcast-hero {
        min-height: 55vh;
        padding: 1.5rem 0 0.6rem 0;
    }
}

.podcast-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="70" cy="15" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="2" fill="rgba(255,255,255,0.06)"/><circle cx="50" cy="70" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="20" cy="80" r="1.5" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: grain-animation 20s infinite linear;
    pointer-events: none;
    will-change: transform;
}

@keyframes grain-animation {
    0% { transform: translate3d(0, 0, 0); }
    25% { transform: translate3d(-10px, -10px, 0); }
    50% { transform: translate3d(10px, -20px, 0); }
    75% { transform: translate3d(-20px, 10px, 0); }
    100% { transform: translate3d(0, 0, 0); }
}

.podcast-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--front-hero-particle);
    border-radius: 50%;
    animation: float 6s infinite ease-in-out;
    will-change: transform, opacity;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 8s; }
.particle:nth-child(2) { left: 20%; animation-delay: 1s; animation-duration: 6s; }
.particle:nth-child(3) { left: 30%; animation-delay: 2s; animation-duration: 7s; }
.particle:nth-child(4) { left: 40%; animation-delay: 0.5s; animation-duration: 9s; }
.particle:nth-child(5) { left: 50%; animation-delay: 1.5s; animation-duration: 5s; }
.particle:nth-child(6) { left: 60%; animation-delay: 2.5s; animation-duration: 8s; }
.particle:nth-child(7) { left: 70%; animation-delay: 0.8s; animation-duration: 6s; }
.particle:nth-child(8) { left: 80%; animation-delay: 1.8s; animation-duration: 7s; }
.particle:nth-child(9) { left: 90%; animation-delay: 0.3s; animation-duration: 9s; }

@keyframes float {
    0%, 100% { transform: translate3d(0, 100vh, 0) rotate(0deg) scale(0); opacity: 0; }
    10% { opacity: 1; transform: translate3d(0, 90vh, 0) rotate(45deg) scale(1); }
    90% { opacity: 1; transform: translate3d(0, -10vh, 0) rotate(315deg) scale(1); }
    100% { opacity: 0; transform: translate3d(0, -20vh, 0) rotate(360deg) scale(0); }
}

.podcast-hero-content {
    position: relative;
    z-index: 10;
    color: white;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.podcast-hero-main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    animation: fadeInUp 1s ease-out;
}

/* podcast-hero-content-blockの追加に対応 */
.podcast-hero-content-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}

.podcast-hero-sidebar {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
}

.sidebar-section-title {
    font-size: var(--card-title-large);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: 0.5px;
}

.stats-section,
.navigation-section {
    width: 100%;
    margin-bottom: 2.5rem;
}

/* フロントページ特有のアニメーション */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 50px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.hero-title {
    font-size: var(--hero-title);
    font-weight: 900;
    margin-bottom: 1rem;
    background: var(--front-hero-title-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    line-height: 1.1;
    text-align: left;
}

.hero-subtitle {
    font-size: var(--hero-subtitle);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--front-hero-text);
    letter-spacing: 0.5px;
    text-align: left;
}

.podcast-hero-artwork {
    margin: 1.5rem 0;
    position: relative;
    animation: gentleGlow 3s ease-in-out infinite;
    align-self: center;
    /* 幅を制限してレイアウトの崩れを防ぐ */
    max-width: 300px;
    width: 100%;
}

.podcast-artwork {
    width: 300px;
    height: 300px;
    border-radius: 25px;
    box-shadow: var(--front-hero-artwork-shadow);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.podcast-artwork:hover {
    transform: translate3d(0, 0, 0) scale(1.05) rotate(2deg);
}

@keyframes gentleGlow {
    0%, 100% {
        box-shadow: 
            0 20px 40px rgba(0,0,0,0.3),
            0 0 0 8px rgba(255,255,255,0.1),
            0 0 0 16px rgba(255,255,255,0.05),
            0 0 30px rgba(255,255,255,0.15);
    }
    50% {
        box-shadow: 
            0 22px 44px rgba(0,0,0,0.32),
            0 0 0 9px rgba(255,255,255,0.12),
            0 0 0 18px rgba(255,255,255,0.06),
            0 0 40px rgba(255,255,255,0.2);
    }
}

.podcast-hero-text {
    margin: 1.5rem 0;
    text-align: center; /* content-block内では中央揃え */
    width: 100%;
}

.podcast-hero-description {
    font-size: var(--body-text);
    line-height: 1.6;
    color: var(--front-hero-text);
    max-width: 500px;
    margin: 0 auto; /* 中央揃えのためのマージン */
}

.podcast-stats {
    display: flex;
    flex-direction: row;
    gap: 1.2rem;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    justify-content: center;
    flex-wrap: wrap;
}

.podcast-stat {
    text-align: center;
    background: var(--front-nav-link-bg);
    padding: 1.3rem 1rem;
    border-radius: 18px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--front-nav-link-border);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 120px;
    max-width: 150px;
}

.podcast-stat:hover {
    transform: translateY(-5px);
    background: var(--front-nav-link-hover);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.podcast-stat-number {
    display: block;
    font-size: var(--page-title);
    font-weight: 900;
    color: var(--front-stats-number);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    counter-reset: number;
    animation: countUp 2s ease-out forwards;
    margin-bottom: 0.3rem;
}

.podcast-stat-label {
    display: block;
    font-size: var(--meta-primary);
    color: var(--front-stats-label);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

/* ナビゲーション プリロード効果 - フロントページ特有 */
.hero-nav-menu {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.5s;
}

.hero-nav-link:nth-child(1) { animation-delay: 0.1s; }
.hero-nav-link:nth-child(2) { animation-delay: 0.2s; }
.hero-nav-link:nth-child(3) { animation-delay: 0.3s; }
.hero-nav-link:nth-child(4) { animation-delay: 0.4s; }

/* ヒーローナビゲーションセクション */
.hero-navigation {
    width: 100%;
    margin-top: 1rem;
}

.hero-nav-menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
}

.hero-nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0.8rem;
    background: var(--front-nav-link-bg);
    color: var(--front-nav-link-text);
    text-decoration: none;
    border-radius: 16px;
    border: 1px solid var(--front-nav-link-border);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    font-size: 0.85rem;
    text-align: center;
    min-height: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    will-change: transform;
}

/* シマーエフェクト */
.hero-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    will-change: left;
}

.hero-nav-link:hover::before {
    left: 100%;
}

/* グラデーションボーダー効果 */
.hero-nav-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #667eea, #764ba2);
    background-size: 400% 400%;
    border-radius: 16px;
    opacity: 0;
    z-index: -1;
    animation: gradientShift 3s ease infinite;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity;
}

.hero-nav-link:hover::after {
    opacity: 0.3;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-nav-link:hover {
    background: var(--front-nav-link-hover);
    transform: translate3d(0, -3px, 0) scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    color: var(--front-nav-link-text);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-nav-link:active {
    transform: translate3d(0, -1px, 0) scale(1.01);
    transition: transform 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* フォーカス状態（アクセシビリティ） */
.hero-nav-link:focus,
.hero-nav-link.focused {
    outline: 2px solid rgba(255, 255, 255, 0.6);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

/* タッチデバイス対応 */
.hero-nav-link.touch-active {
    transform: scale(0.98);
    transition: transform 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* プレロード状態 */
.hero-nav-link.preload {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
}

/* ナビゲーションアイコンとテキストの配置 */
.hero-nav-link {
    flex-direction: column;
    gap: 0.3rem;
}

.hero-nav-link .nav-icon {
    font-size: var(--card-title);
    opacity: 0.9;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    position: relative;
    will-change: transform, opacity;
}

.hero-nav-link:hover .nav-icon {
    opacity: 1;
    transform: scale(1.1);
}

.hero-nav-link .nav-text {
    font-size: var(--meta-small);
    line-height: 1.2;
    font-weight: 500;
    z-index: 2;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-nav-link:hover .nav-text {
    font-weight: 600;
}

.podcast-hero-cta {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.podcast-cta-primary, .podcast-cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: var(--body-text);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.podcast-cta-primary {
    background: var(--front-cta-primary-bg);
    color: var(--front-cta-primary-text);
    box-shadow: var(--front-cta-primary-shadow);
}

.podcast-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
    color: var(--front-cta-primary-text);
}

.podcast-cta-secondary {
    background: var(--front-cta-secondary-bg);
    color: var(--front-cta-secondary-text);
    border: 2px solid var(--front-cta-secondary-border);
    backdrop-filter: blur(10px);
}

.podcast-cta-secondary:hover {
    background: var(--front-nav-link-hover);
    transform: translateY(-3px);
    color: var(--front-cta-secondary-text);
}

/* レスポンシブ対応 */
@media (max-width: 968px) {
    .podcast-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .podcast-hero-main {
        align-items: center;
        text-align: center;
        order: 1;
    }

    .podcast-hero-content-block {
        align-items: center;
        text-align: center;
    }
    
    .hero-title {
        text-align: center;
    }
    
    .hero-subtitle {
        text-align: center;
    }
    
    .podcast-hero-text {
        text-align: center;
    }
    
    .podcast-hero-main {
        order: 1;
    }
    
    .podcast-hero-sidebar {
        order: 2;
    }
    
    /* 統計情報は横並びで表示 */
    .podcast-stats {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        max-width: 450px;
        margin: 0 auto;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .podcast-stat {
        flex: 1;
        min-width: 110px;
        max-width: 140px;
        padding: 1.2rem 0.8rem;
    }
    
    /* ナビゲーションのレスポンシブ対応 */
    .hero-nav-menu {
        grid-template-columns: 1fr 1fr;
        gap: 0.7rem;
        max-width: 320px;
    }
    
    .hero-nav-link {
        padding: 0.9rem 0.6rem;
        font-size: 0.8rem;
        min-height: 55px;
        border-radius: 14px;
    }
    
    .hero-nav-link .nav-icon {
        font-size: 1.1rem;
    }
    
    .hero-nav-link .nav-text {
        font-size: 0.7rem;
    }
    
    /* ホバー効果をモバイルでは軽量化 */
    .hero-nav-link::after {
        display: none;
    }
    
    .hero-nav-link:hover {
        transform: translateY(-2px) scale(1.01);
    }
    
    /* エピソードボタンの中央揃え */
    .episodes-cta {
        text-align: center;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 1rem;
    }
    
    .episodes-view-all-btn, .blog-view-all-btn {
        width: 280px;
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .podcast-hero {
        min-height: 65vh;
        padding: 1rem 0;
    }

    .podcast-hero-content-block {
        gap: 1rem;
    }
    
    .podcast-hero-artwork {
        margin: 1rem 0;
        max-width: 220px;
    }
    
    .podcast-artwork {
        width: 220px;
        height: 220px;
    }
    
    /* 統計情報を横並びで表示 */
    .podcast-stats {
        display: flex;
        flex-direction: row;
        gap: 0.8rem;
        max-width: 350px;
        margin: 0 auto;
        justify-content: center;
    }
    
    .podcast-stat {
        flex: 1;
        min-width: 100px;
        padding: 1rem 0.5rem;
        text-align: center;
        border-radius: 15px;
    }
    
    .podcast-stat-number {
        font-size: 1.6rem;
        margin-bottom: 0.3rem;
    }
    
    .podcast-stat-label {
        font-size: 0.7rem;
        line-height: 1.2;
    }
    }
    
    /* ナビゲーションを2x2グリッドに変更 */
    .hero-nav-menu {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero-nav-link {
        width: auto;
        justify-content: center;
        padding: 0.7rem 0.4rem;
        font-size: 0.8rem;
        text-align: center;
        border-radius: 12px;
    }
    
    .podcast-hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .podcast-cta-primary, .podcast-cta-secondary {
        width: 280px;
        justify-content: center;
    }
    
    /* フロントページ特有のセクション調整 */
    .sidebar-section-title {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .podcast-hero-artwork {
        margin: 1rem 0;
    }
    
    .podcast-hero-sidebar {
        gap: 1.5rem;
    }
}

/* フロントページ特有のモバイル最適化 */
@media (max-width: 480px) {
    .podcast-hero {
        min-height: 60vh;
    }

    .podcast-hero-content-block {
        gap: 0.8rem;
    }
    
    .podcast-hero-artwork {
        margin: 0.8rem 0;
        max-width: 200px;
    }
    
    .podcast-artwork {
        width: 200px;
        height: 200px;
    }
    
    .podcast-hero-text {
        margin: 0.8rem 0;
    }
    
    /* フロントページ特有のパーティクルアニメーション無効化 */
    .podcast-hero-particles {
        display: none;
    }
    
    /* フロントページ特有の統計情報レイアウト */
    .podcast-stats {
        display: flex;
        flex-direction: row;
        gap: 0.4rem;
        max-width: 300px;
        margin: 1rem auto;
        justify-content: center;
    }
    
    .podcast-stat {
        flex: 1;
        min-width: 85px;
        padding: 0.7rem 0.2rem;
        border-radius: 10px;
    }
    
    .podcast-stat-number {
        font-size: 1.3rem;
        margin-bottom: 0.1rem;
    }
    
    .podcast-stat-label {
        font-size: 0.6rem;
        line-height: 1.0;
    }
    
    /* フロントページ特有のナビゲーション最適化 */
    .hero-nav-menu {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        max-width: 260px;
    }
    
    .hero-nav-link {
        padding: 0.7rem 0.4rem;
        font-size: 0.7rem;
        min-height: 45px;
        border-radius: 10px;
    }
    
    .hero-nav-link .nav-icon {
        font-size: 0.9rem;
    }
    
    .hero-nav-link .nav-text {
        font-size: 0.6rem;
        line-height: 1.0;
    }
    
    /* フロントページ特有のシンプルなホバー効果 */
    .hero-nav-link::before,
    .hero-nav-link::after {
        display: none;
    }
    
    .hero-nav-link:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: none;
    }
}
}
    /* プラットフォームセクション */
    .podcast-platforms-section {
        padding: 4rem 0;
        background: var(--platforms-bg);
        position: relative;
    }
    
    .podcast-platforms-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(102,126,234,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(118,75,162,0.08)"/><circle cx="40" cy="70" r="2" fill="rgba(240,147,251,0.1)"/></svg>');
        animation: float-bg 15s infinite ease-in-out;
    }
    
    @keyframes float-bg {
        0%, 100% { transform: translate(0, 0) rotate(0deg); }
        33% { transform: translate(-10px, -10px) rotate(1deg); }
        66% { transform: translate(10px, -5px) rotate(-1deg); }
    }
    
    .platforms-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1rem;
        position: relative;
        z-index: 2;
    }
    
    .platforms-header {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .platforms-header h2 {
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 900;
        background: var(--platforms-title);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 1rem;
    }
    
    .platforms-subtitle {
        font-size: clamp(1.1rem, 2.5vw, 1.3rem);
        color: var(--platforms-subtitle);
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
    }
    
    /* プラットフォームリンク - フロントページ用 */
    .platforms-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        margin-top: 2.5rem;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .platforms-grid .platform-link {
        background: var(--platforms-card-bg);
        border: 2px solid transparent;
        border-radius: 16px;
        padding: 1.5rem 1rem;
        text-decoration: none;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        position: relative;
        overflow: hidden;
        min-height: 120px;
        justify-content: center;
    }
    
    .platforms-grid .platform-link:hover {
        transform: translateY(-3px);
        box-shadow: var(--platforms-card-shadow);
        border-color: var(--platforms-card-border-hover);
        text-decoration: none;
    }
    
    .platforms-grid .platform-icon {
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        margin: 0 auto 0.75rem auto;
        border-radius: 50%;
        background: var(--gray-100);
        transition: all 0.3s ease;
        overflow: hidden;
    }
    
    .platforms-grid .platform-icon img {
        width: 36px;
        height: 36px;
        object-fit: contain;
        border-radius: 50%;
    }
    
    .platforms-grid .platform-link:hover .platform-icon {
        background: var(--platforms-card-border-hover);
        transform: scale(1.1);
    }
    
    .platforms-grid .platform-name {
        font-size: 1rem;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 0.25rem;
    }
    
    .platforms-grid .platform-action {
        font-size: 0.875rem;
        color: var(--text-secondary);
        font-weight: 500;
    }
    
    .platforms-grid .platform-link:hover .platform-name,
    .platforms-grid .platform-link:hover .platform-action {
        color: var(--text-primary);
    }
    
    /* プラットフォーム別の色 */
    .platforms-grid .platform-spotify:hover .platform-icon {
        background: #1DB954;
        color: #fff;
    }
    
    .platforms-grid .platform-apple:hover .platform-icon {
        background: #A855F7;
        color: #fff;
    }
    
    .platforms-grid .platform-youtube:hover .platform-icon {
        background: #FF0000;
        color: #fff;
    }
    
    /* コンテンツフリークスの歩みボタン */
    .history-cta {
        text-align: center;
        margin-top: 3rem;
    }
    
    .history-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 1rem 2rem;
        background: var(--history-btn-gradient);
        color: var(--white);
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        box-shadow: 0 8px 25px rgba(142, 36, 170, 0.3);
    }
    
    .history-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(142, 36, 170, 0.5);
        color: var(--white);
        text-decoration: none;
    }
    
    @media (max-width: 768px) {
        .history-btn {
            padding: 0.8rem 1.5rem;
            font-size: 1rem;
        }
        
        .history-cta {
            margin-top: 2rem;
        }
    }
    
    /* デスクトップレイアウト（1025px以上） */
    @media (min-width: 1025px) {
        .platforms-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 900px;
            margin-top: 3rem;
        }
        
        .platforms-grid .platform-link {
            padding: 2rem 1.5rem;
            min-height: 140px;
            border-radius: 20px;
            border-width: 3px;
        }
        
        .platforms-grid .platform-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }
        
        .platforms-grid .platform-icon {
            width: 60px;
            height: 60px;
            font-size: 1.8rem;
            margin: 0 auto 1rem auto;
        }
        
        .platforms-grid .platform-icon img {
            width: 48px;
            height: 48px;
            object-fit: contain;
            border-radius: 50%;
        }
        
        .platforms-grid .platform-link:hover .platform-icon {
            transform: scale(1.15);
        }
        
        .platforms-grid .platform-name {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .platforms-grid .platform-action {
            font-size: 0.95rem;
            font-weight: 600;
        }
    }
    
    /* タブレットレイアウト（769px - 1024px） */
    @media (min-width: 769px) and (max-width: 1024px) {
        .platforms-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            max-width: 750px;
        }
        
        .platforms-grid .platform-link {
            padding: 1.5rem 1rem;
            min-height: 130px;
        }
        
        .platforms-grid .platform-icon {
            width: 55px;
            height: 55px;
            font-size: 1.6rem;
            margin: 0 auto 0.5rem auto;
        }
        
        .platforms-grid .platform-icon img {
            width: 44px;
            height: 44px;
            object-fit: contain;
            border-radius: 50%;
        }
        
        .platforms-grid .platform-name {
            font-size: 1.05rem;
        }
        
        .platforms-grid .platform-action {
            font-size: 0.9rem;
        }
    }
    
    /* レスポンシブ対応（768px以下） */
    @media (max-width: 768px) {
        .platforms-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
        }
        
        .platforms-grid .platform-link {
            padding: 1rem 0.5rem;
            min-height: 100px;
        }
        
        .platforms-grid .platform-icon {
            width: 35px;
            height: 35px;
            font-size: 1.1rem;
            margin: 0 auto 0.5rem auto;
        }
        
        .platforms-grid .platform-icon img {
            width: 28px;
            height: 28px;
            object-fit: contain;
            border-radius: 50%;
        }
        
        .platforms-grid .platform-name {
            font-size: 0.8rem;
            margin-bottom: 0.2rem;
        }
        
        .platforms-grid .platform-action {
            font-size: 0.7rem;
        }
    }
    
    /* 極小レイアウト: 1カラム（480px以下） */
    @media (max-width: 480px) {
        .platforms-grid {
            grid-template-columns: 1fr;
            max-width: 300px;
        }
        
        .platforms-grid .platform-link {
            padding: 1.5rem 1rem;
            min-height: 80px;
        }
        
        .platforms-grid .platform-icon {
            width: 40px;
            height: 40px;
            font-size: 1.3rem;
            margin: 0 auto 0.5rem auto;
        }
        
        .platforms-grid .platform-icon img {
            width: 32px;
            height: 32px;
            object-fit: contain;
            border-radius: 50%;
        }
        
        .platforms-grid .platform-name {
            font-size: 0.9rem;
        }
        
        .platforms-grid .platform-action {
            font-size: 0.8rem;
        }
    }
    
    /* ホストセクション - 新しい色彩フロー適用 */
    .hosts-section {
        padding: 3rem 0;
        background: var(--hosts-bg);
        color: var(--hosts-text);
    }
    
    .hosts-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1rem;
    }
    
    .hosts-header {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .hosts-header h2 {
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 900;
        background: var(--hosts-title-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 0 4px 20px rgba(46,125,50,0.3);
        margin-bottom: 1rem;
    }
    
    /* プロフィールページへのボタン */
    .hosts-cta {
        text-align: center;
        margin-top: 3rem;
    }
    
    .hosts-profile-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 1rem 2rem;
        background: var(--hosts-title-gradient);
        color: var(--white);
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
    }
    
    .hosts-profile-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(46, 125, 50, 0.5);
        color: var(--white);
        text-decoration: none;
    }
    
    @media (max-width: 768px) {
        .hosts-profile-btn {
            padding: 0.8rem 1.5rem;
            font-size: 1rem;
        }
        
        .hosts-cta {
            margin-top: 2rem;
        }
    }
    
    @media (max-width: 768px) {
        .podcast-platforms-section {
            padding: 2.5rem 0;
        }
        
        .platforms-header {
            margin-bottom: 2rem;
        }
        
        .latest-episode-section {
            padding: 2.5rem 0;
        }
        
        .latest-episode-header {
            margin-bottom: 2rem;
        }
        
        .hosts-section {
            padding: 2rem 0;
        }
        
        .hosts-header {
            margin-bottom: 2rem;
        }
        
        .episodes-section {
            padding: 2.5rem 0;
        }
        
        .episodes-header {
            margin-bottom: 2rem;
        }
        
        /* エピソード一覧カードの日付フォントサイズ調整 */
        .episodes-section .episode-date {
            font-size: 0.75rem;
        }
        
        .newsletter-section {
            padding: 2.5rem 0;
        }
        
        .newsletter-header {
            margin-bottom: 2rem;
        }
        
        .testimonials-section {
            padding: 2.5rem 0;
        }
        
        .testimonials-header {
            margin-bottom: 2rem;
        }
        
        .subscribe-section {
            padding: 2rem;
            margin-top: 2rem;
        }
        
        .subscribe-buttons {
            flex-direction: column;
            align-items: center;
        }
        
        .rss-button /* .email-subscribe も一時的に無効化 */ {
            width: 200px;
            justify-content: center;
        }
    }
    
    /* エピソード一覧セクション */
    .episodes-section {
        padding: 3rem 0;
        background: var(--episodes-grid-bg);
    }
    
    .episodes-header {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .episodes-header h2 {
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 900;
        background: var(--recent-episodes-title-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 1rem;
    }
    
    /* エピソード一覧カードの日付スタイル */
    .episodes-section .episode-date {
        color: var(--episodes-card-meta);
        font-size: var(--meta-primary);
        font-weight: 500;
    }
    
    /* 最新エピソードセクション */
    .latest-episode-section {
        padding: 3rem 0;
        background: var(--latest-episode-bg);
        position: relative;
    }
    
    .latest-episode-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
    }
    
    .latest-episode-header {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .latest-episode-header h2 {
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 900;
        background: linear-gradient(135deg, #667eea, #764ba2);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 1rem;
    }
    
    .featured-episode {
        background: var(--latest-episode-card-bg);
        backdrop-filter: blur(20px);
        border-radius: 30px;
        padding: 3rem;
        box-shadow: var(--latest-episode-card-shadow);
        border: 1px solid rgba(255, 255, 255, 0.3);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .featured-episode::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
        animation: shimmer 3s infinite ease-in-out;
    }
    
    @keyframes shimmer {
        0%, 100% { transform: translateX(-100%); }
        50% { transform: translateX(100%); }
    }
    
    .featured-episode:hover {
        transform: translateY(-5px);
        box-shadow: 
            0 30px 60px rgba(0,0,0,0.15),
            0 0 0 1px rgba(255,255,255,0.7);
    }
    
    .featured-episode-content {
        display: grid;
        grid-template-columns: 300px 1fr;
        gap: 3rem;
        align-items: center;
    }
    
    /* タブレット向け調整 */
    @media (max-width: 1024px) {
        .featured-episode-content {
            grid-template-columns: 250px 1fr;
            gap: 2rem;
        }
    }
    
    /* より小さいタブレット・大きなモバイル向け調整 */
    @media (max-width: 900px) {
        .featured-episode-content {
            grid-template-columns: 1fr;
            gap: 1.5rem;
            text-align: center;
        }
        
        .featured-episode-image {
            width: 100%;
            max-width: 300px;
            margin: 0 auto;
        }
        
        .featured-episode {
            padding: 2rem;
        }
        
        .featured-episode-details {
            padding: 0.8rem 0;
        }
    }
    
    .featured-episode-image {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 15px 35px rgba(0,0,0,0.2);
        display: block;
        line-height: 0;
        aspect-ratio: 1 / 1; /* 正方形のアスペクト比を強制 */
    }
    
    .featured-episode-image img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* 画像をコンテナにフィットさせる */
        display: block;
        transition: transform 0.3s ease;
        vertical-align: top;
    }
    
    .featured-episode:hover .featured-episode-image img {
        transform: scale(1.05);
    }
    
    .featured-episode-default-thumbnail {
        background: var(--latest-episode-badge-bg);
        width: 100%;
        aspect-ratio: 1 / 1; /* 正方形のアスペクト比 */
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 3rem;
        border-radius: 20px;
        line-height: 1;
        margin: 0;
    }
    
    .featured-episode-details {
        padding: 1rem 0;
    }
    
    .episode-meta-info {
        display: flex;
        gap: 1rem;
        margin-bottom: 1rem;
        flex-wrap: wrap;
    }
    
    /* 最新エピソードセクションの日付・時間スタイル（バッジ型） */
    .latest-episode-section .episode-date,
    .latest-episode-section .episode-duration {
        background: var(--latest-episode-btn-secondary);
        color: var(--latest-episode-btn-secondary-text);
        padding: 0.4rem 1rem;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 600;
    }
    
    .featured-episode-title {
        font-size: clamp(1.5rem, 3vw, 2.5rem);
        font-weight: 800;
        color: var(--latest-episode-title);
        margin-bottom: 2rem;
        line-height: 1.3;
    }
    
    .featured-episode-description {
        font-size: 1.1rem;
        color: var(--latest-episode-text);
        line-height: 1.6;
        margin-bottom: 2rem;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .episode-actions {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .episode-share-btn, .episodes-list-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 1rem 2rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        font-size: 1.1rem;
        justify-content: center;
    }
    
    .episode-share-btn {
        background: var(--latest-episode-title-gradient);
        color: var(--white);
        box-shadow: 0 8px 25px var(--latest-episode-title-gradient);
    }
    
    .episode-share-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px var(--latest-episode-title-gradient);
        color: var(--white);
        text-decoration: none;
    }
    
    .episodes-list-btn {
        background: var(--latest-episode-btn-secondary);
        color: var(--latest-episode-btn-secondary-text);
        border: 2px solid var(--latest-episode-btn-secondary-text);
    }
    
    .episodes-list-btn:hover {
        background: var(--latest-episode-btn-secondary-text);
        color: var(--white);
        transform: translateY(-3px);
    }
    
    @media (max-width: 768px) {
        .latest-episode-container {
            padding: 0 1rem;
        }
        
        .featured-episode {
            padding: 1.5rem;
            margin: 0 0.5rem;
        }
        
        .featured-episode-content {
            grid-template-columns: 1fr;
            gap: 1.5rem;
            text-align: center;
        }
        
        .featured-episode-image {
            width: 100%;
            max-width: 280px;
            margin: 0 auto;
        }
        
        .featured-episode-details {
            padding: 0.5rem 0;
        }
        
        .featured-episode-title {
            font-size: 1.3rem;
            -webkit-line-clamp: 2;
            text-align: center;
        }
        
        .featured-episode-description {
            font-size: 0.95rem;
            -webkit-line-clamp: 3;
            text-align: center;
            margin-bottom: 1.5rem;
        }
        
        .episode-actions {
            justify-content: center;
        }
        
        .episode-share-btn {
            padding: 0.7rem 1.2rem;
            font-size: 0.9rem;
        }
    }
    
    /* より小さなモバイル向け */
    @media (max-width: 480px) {
        .latest-episode-section {
            padding: 2rem 0;
        }
        
        .latest-episode-container {
            padding: 0 1rem;
        }
        
        .featured-episode {
            padding: 1rem;
            margin: 0;
            border-radius: 20px;
        }
        
        .featured-episode-content {
            gap: 1rem;
        }
        
        .featured-episode-image {
            width: 100%;
            max-width: 240px;
            margin: 0 auto;
        }
        
        .featured-episode-details {
            padding: 0;
        }
        
        .featured-episode-title {
            font-size: 1.2rem;
            margin-bottom: 0.8rem;
        }
        
        .featured-episode-description {
            font-size: 0.9rem;
            margin-bottom: 1.2rem;
        }
        
        .episode-meta-info {
            justify-content: center;
        }
        
        /* 最新エピソードセクションの日付・時間スタイル（バッジ型） */
        .latest-episode-section .episode-date,
        .latest-episode-section .episode-duration {
            font-size: 0.8rem;
            padding: 0.3rem 0.8rem;
        }
    }
    
    /* エピソードセクションのスタイルはpage-episodes.cssを使用 */
    
    /* episodes-container と episodes-header のスタイルはpage-episodes.cssを使用 */
    
    /* エピソードカードのスタイルはpage-episodes.cssを使用 */
    
    .episodes-cta {
        text-align: center;
        margin-top: 3rem;
        display: flex;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .episodes-view-all-btn, .blog-view-all-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.8rem 1.5rem;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1.0rem;
        transition: all 0.3s ease;
        white-space: nowrap;
        justify-content: center;
    }
    
    .episodes-view-all-btn {
        background: var(--recent-episodes-title-gradient);
        color: var(--white);
        box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
    }
    
    .episodes-view-all-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(46, 125, 50, 0.5);
        color: var(--white);
        text-decoration: none;
    }
    
    .blog-view-all-btn {
        background: var(--blog-hero-bg);
        color: var(--white);
        box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
    }
    
    .blog-view-all-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(46, 125, 50, 0.5);
        color: var(--white);
        text-decoration: none;
    }
    
    .episodes-empty-state {
        grid-column: 1 / -1;
        text-align: center;
        padding: 4rem 2rem;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(20px);
        border-radius: 25px;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .episodes-empty-state h3 {
        color: #343a40;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .episodes-empty-state p {
        color: #6c757d;
        margin-bottom: 2rem;
    }
    
    .episodes-empty-state .button {
        background: linear-gradient(45deg, #667eea, #764ba2);
        color: white;
        padding: 1rem 2rem;
        border-radius: 50px;
        text-decoration: none;
        display: inline-block;
        font-weight: 600;
        transition: all 0.3s ease;
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    }
    
    .episodes-empty-state .button:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5);
    }
    
    /* 上記の統合モバイルCSSで対応済み */
    
    @media (max-width: 480px) {
        /* 上記の統合モバイルCSSで対応済み */
        
        .episodes-view-all-btn, .blog-view-all-btn {
            width: 250px;
            padding: 0.8rem 1.5rem;
            font-size: 1rem;
        }
        
        /* ボタンコンテナの中央揃え */
        .episodes-cta {
            text-align: center;
            justify-content: center;
            align-items: center;
            gap: 0.8rem;
        }
        
        /* エピソード一覧カードの日付フォントサイズ調整 */
        .episodes-section .episode-date {
            font-size: 0.7rem;
        }
    }
    
    /* テスティモニアルセクション - 新しい色彩フロー適用 */
    .testimonials-section {
        padding: 3.5rem 0;
        background: var(--testimonials-bg);
        color: var(--testimonials-text);
        position: relative;
        overflow: hidden;
    }
    
    .testimonials-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,20 Q30,10 40,20 T60,20" stroke="rgba(217,119,6,0.1)" stroke-width="2" fill="none"/><path d="M10,60 Q25,50 40,60 T70,60" stroke="rgba(217,119,6,0.08)" stroke-width="1.5" fill="none"/></svg>');
        animation: float-waves 10s infinite ease-in-out;
    }
    
    @keyframes float-waves {
        0%, 100% { transform: translateX(0); }
        50% { transform: translateX(20px); }
    }
    
    .testimonials-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1rem;
        position: relative;
        z-index: 2;
    }
    
    .testimonials-header {
        text-align: center;
        margin-bottom: 4rem;
    }
    
    .testimonials-header h2 {
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 900;
        background: linear-gradient(135deg, var(--testimonials-title), var(--testimonials-accent));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 0 4px 20px rgba(217,119,6,0.2);
        margin-bottom: 1rem;
    }
    
    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 2rem;
    }
    
    .testimonial-card {
        background: var(--testimonials-card-bg);
        backdrop-filter: blur(20px);
        border-radius: 25px;
        padding: 2.5rem;
        border: 1px solid var(--testimonials-card-border);
        box-shadow: var(--testimonials-card-shadow);
        transition: all 0.3s ease;
        position: relative;
    }
    
    .testimonial-card::before {
        content: '"';
        position: absolute;
        top: -10px;
        left: 20px;
        font-size: 6rem;
        color: var(--testimonials-card-border);
        font-family: serif;
        line-height: 1;
    }
    
    .testimonial-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 60px rgba(217,119,6,0.2);
        background: var(--white);
    }
    
    .testimonial-quote {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        color: var(--testimonials-quote);
        font-style: italic;
        position: relative;
        z-index: 2;
    }
    
    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
        background: linear-gradient(45deg, #ff6b35, #f7931e);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 1.2rem;
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    }
    
    .author-info h4 {
        color: #01579b;
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 0.2rem;
    }
    
    .author-role {
        color: #424242;
        font-size: 0.9rem;
    }
    
    @media (max-width: 768px) {
        .testimonials-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        
        .testimonial-card {
            padding: 2rem;
        }
        
        .sync-status-info {
            grid-template-columns: 1fr;
        }
    }
    
    @media (max-width: 480px) {
        .testimonials-section {
            padding: 2.5rem 0;
        }
        
        .testimonials-container {
            padding: 0 1rem;
        }
        
        .testimonials-header {
            margin-bottom: 2.5rem;
        }
        
        .testimonials-header h2 {
            font-size: 2rem;
            margin-bottom: 0.8rem;
        }
        
        .testimonials-grid {
            gap: 1.2rem;
        }
        
        .testimonial-card {
            padding: 1.5rem;
        }
        
        .testimonial-card::before {
            font-size: 4rem;
            top: -5px;
            left: 15px;
        }
        
        .testimonial-quote {
            font-size: 1rem;
            line-height: 1.5;
            margin-bottom: 1.5rem;
        }
        
        .author-avatar {
            width: 40px;
            height: 40px;
            font-size: 1rem;
        }
        
        .author-info h4 {
            font-size: 1rem;
        }
        
        .author-role {
            font-size: 0.8rem;
        }
    }
