/* カードコンテナ */
.tmdb-movie-cards-container-jp {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px auto;
    max-width: 1200px;
    padding: 0 20px;
}

/* 単体カード */
.tmdb-movie-card-jp {
    width: 200px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tmdb-movie-card-jp:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* ポスタースタイル */
.tmdb-movie-poster-jp img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* 映画タイトル */
.tmdb-movie-title-jp {
    font-size: 16px;
    font-weight: 600;
    padding: 10px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}

/* モーダルウィンドウ */
.tmdb-modal-jp {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

/* モーダルコンテンツ */
.tmdb-modal-content-jp {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 900px;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

/* 閉じるボタン */
.tmdb-modal-close-jp {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.tmdb-modal-close-jp:hover {
    color: #000;
}

/* 映画詳細スタイル */
#tmdb-movie-details-jp {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
}

.tmdb-details-poster-jp img {
    width: 100%;
    max-width: 300px;
    border-radius: 8px;
}

.tmdb-details-info-jp {
    font-size: 14px;
    line-height: 1.6;
}

.tmdb-details-info-jp h2 {
    font-size: 24px;
    margin-top: 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.tmdb-details-info-jp p {
    margin: 8px 0;
}

.tmdb-details-info-jp strong {
    color: #333;
    min-width: 120px;
    display: inline-block;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    #tmdb-movie-details-jp {
        grid-template-columns: 1fr;
    }
    .tmdb-movie-cards-container-jp {
        gap: 15px;
    }
    .tmdb-movie-card-jp {
        width: 150px;
    }
    .tmdb-movie-poster-jp img {
        height: 225px;
    }
}