@charset "UTF-8";

:root {
    --color-pink: #e62d8b;
    --color-darkyellow: #ffc500;
    --font-rocknroll: "RocknRoll One", sans-serif;
}

.pff-program-section {
    color: #000;
}

@media screen and (max-width:767px) {
    .pff-program-section {
       padding-top: .6rem;
    }

}

.entry-visual {
    margin-bottom: 1.25rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.entry-visual-slider {
    position: relative;
    width: calc(100% - 140px);
}

.entry-visual .entry-main-image {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 5/3;
}

.entry-visual .entry-visual-thumbs {
    width: 140px;
}

.entry-visual .entry-visual-thumbs {
    display: flex;
    gap: 8px;
    flex-direction: column;
    height: 100%;
    /* Will be set in sync with JS */
}

.entry-visual .entry-thumbimage {
    border: 2px solid transparent;
    width: 100%;
    object-fit: cover;
}

.entry-visual-slider .slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
}

.slide-arrow#slide-prev {
    left: 14px;
}

.slide-arrow#slide-next {
    right: 14px;
}

@media (hover: hover) {
    .entry-visual-slider .slide-arrow:hover {
        opacity: .75;
    }
}
.arrow {
    border: solid #fff;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 15.5px;
}

.arrow--right {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.arrow--left {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}

@media screen and (max-width:767px) {
    
    .entry-visual {
        gap: 5px;
        flex-wrap: wrap;
        flex-direction: column;
    }

    .entry-visual-slider {
        width: 100%;
    }

    .entry-visual-slider .slide-arrow {
        width: 30px;
        height: 30px;
    }

    .arrow {
        border-width: 0 3px 3px 0;
        padding: 8px;
    }

    .slide-arrow#slide-next {
        right: 6px;
    }

    .slide-arrow#slide-prev {
        left: 6px;
    }

    .entry-visual .entry-visual-thumbs {
        width: 100%;
        height: auto !important;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        grid-template-rows: repeat(1, 1fr);
        gap: 3px;
    }

    .entry-visual .entry-thumbimage {
        width: 100%;
        aspect-ratio: 4 / 3;
        height: auto !important;
    }

    .entry-content .entry-meta-btm {
        flex-direction: column;
    }
}

.entry-info {
    position: relative;
    padding-bottom: 1.25rem;
    border-bottom: 5px dashed var(--color-darkyellow);
    font-family: var(--font-rocknroll);
}

.entry-header {
    margin-bottom: .6rem;
    display: flex;
    align-items: center;
}

.entry-title {
    margin-bottom: 0;
    font-size: 1.75rem;
}

.entry-info .time{
    margin-left: 1rem;
    font-size: 1.3rem;
    font-weight: bold;
}

.entry-info .mv-director {
    font-size: 1.25rem;
}

.program-icon {
    display: inline-block;
    width: 35px;
}

@media screen and (max-width:767px) {
    .entry-header { 
        flex-wrap: wrap;
        gap:.5rem;
    }
    .entry-title {
        font-size: 6vw;
    }

    .entry-info .time {
        margin-left: 0;
        font-size: 4.5vw;
    }


    .entry-info .mv-director, .entry-info .mv-director-info{
        font-size: 4.75vw;
    }

    .program-icon {
        width: 9.5vw;
        height: 9.5vw;
        background-size: 15vw auto;
    }
}

.entry-content {
    margin-top: 1.25rem;
}

.dir-highlight {
    font-size: 2rem;
}


.entry-content .pff-question {
    font-size: 1.1rem;
    font-family: var(--font-rocknroll);
}

.entry-content .pff-text {
    line-height: 1.8;
}

.entry-content .pff-staff {
    font-size: .95rem;
}

.entry-content .pff-staff+.pff-staff {
    margin-top: 1rem;
}

.entry-content .entry-meta-btm-wrap {
    position: relative;
    margin-top: 2.4rem;
    gap: 1rem;
}

.entry-content .entry-meta-btm > * {
    margin-top: 5px;
}

.entry-meta-btm .tit-bg:not(.entry-guest) {
    letter-spacing: 1px;
}

.entry-meta-btm-wrap .profile-sns {
    position: absolute;
    right: 0;
    bottom: 0;
}

@media screen and (max-width:767px) {
    .dir-highlight {
        font-size: 6vw;
    }

    .entry-content .pff-question {
        font-size: 4.2vw;
    }

    .entry-content .pff-text {
        font-size: 3.5vw;
    }

    .entry-content .entry-meta-btm {
        gap: .3rem;
    }

    .entry-meta-btm .entry-guest {
        display: inline-block;
    }
}