@charset "UTF-8";

.l-main {
    float: left;
    width: 540px;
    height: auto;
    color: #727272;
}


/* センターバナー */
.c-banner {
    margin: 10px auto 0;
    width: 540px;
}

.c-banner--center {
    height: 150px;
}

.c-banner a {
    display: block;
    transition: opacity .4s ease-out;
}

.c-banner a:hover {
    opacity: .4;
}

.c-banner img {
    width: 100%;
    vertical-align: bottom;
}

/* --- 最新動画スライダー --- */
.swiper-container {
    margin-top: 10px;
}

.p-video-slider {
    margin: 0 0 10px;
    background: #ffffff;
    padding: 10px;
}

.p-video-slider__heading {
    margin-bottom: 10px;
}

.p-video-slider__main {
    position: relative;
    overflow: hidden;
}

.p-video-slider__link {
    display: inline-block;
    width: 100%;
}

.p-video-slider__image img {
    width: 100%;
}


/* サムネイルスライダー */
.p-video-slider__thumbs {
    background: #000;
    margin-top: 10px;
}

.p-video-slider__thumb-item {
    width: 93px;
    opacity: 0.6;
    transition: 0.4s;
}

.p-video-slider__thumb-item img {
    width: 100%;
}

.p-video-slider__thumb-item.swiper-slide-active {
    opacity: 1;
    transform: scale(1.3);
    z-index: 1;
}

/* --- 番組一覧 --- */
.p-program-list {
    margin: 10px 0;
    padding: 10px;
    background: #ffffff;
}

.p-program-list__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.p-program-list__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.p-program-card {
    position: relative;
    width: 167px;
    border: 1px solid #c0c0c0;
    margin-bottom: 10px;
    background: #fff;
    transition: transform 0.4s, box-shadow 0.4s;
}

.p-program-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.p-program-card__image {
    background: #030303;
}

.p-program-card__image img {
    width: 120px;
    height: 120px;
}

.p-program-card__content {
    padding: 5px 2px;
    text-align: left;
}

.p-program-card__name {
    font-size: 13px;
    font-weight: bold;
    color: #030303;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 4px;
}

.p-program-card__desc {
    font-size: 11px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 8px;
    color: #333;
}

.p-program-card__meta {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    font-size: 10px;
    color: #333;
}

/* ホバー時の拡大エフェクト */
.p-program-card:hover {
    z-index: 20;
    transform: scale(1.1);
    box-shadow: 0 0 9px rgb(0 0 0 / 70%);
}
