/* ----------------------------------------------

 * ピックアップストーリー

---------------------------------------------- */


.pickup__grid {
    display: grid;
    gap: 16px;
}

/* PC用判定 */
@media screen and (pointer: fine) and (hover: hover) and (orientation: landscape) and (min-width: 800px) and (min-height: 600px) {
    .pickup__grid {
        grid-template-columns: repeat(3,1fr);
    }
}

.pickup__card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
}

.pickup__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	aspect-ratio: 21/9;
}

/* モバイル用として判定 */
@media screen and (orientation: portrait),
screen and (max-width: 799px),
screen and (max-height: 599px) {
    .pickup__thumb {
        width: 100%;
        height: 100%;
        aspect-ratio: 40 / 27;
        overflow: hidden;
    }

        
}

/* PC用判定 */
@media screen and (pointer: fine) and (hover: hover) and (orientation: landscape) and (min-width: 800px) and (min-height: 600px) {
    .pickup__card {
        display: grid;
        grid-template-columns: initial;
        gap: 13px;
    }
}


.pickup__body {
    position: relative;
}


/* モバイル用として判定 */
@media screen and (orientation: portrait),
screen and (max-width: 799px),
screen and (max-height: 599px) {

    .pickup__body::after {
        content: "";
        display: block;
        width: 16px;
        height: 14px;
        position: absolute;
        right: 0;
        bottom: 0;
        background-image: url("../common/img/arrow_right_white.svg");
        background-size: contain;
    }
}



.pickup__title {
    margin-top: 0;
    line-height: 1.4;
}

/* モバイル用として判定 */
@media screen and (orientation: portrait),
screen and (max-width: 799px),
screen and (max-height: 599px) {
    a.arrow_right.color_white::after {
        display: none;
    }
}

/* PC用判定 */
@media screen and (pointer: fine) and (hover: hover) and (orientation: landscape) and (min-width: 800px) and (min-height: 600px) {
    
    .pickup__title a.arrow_right.inline {
        justify-content: flex-start;
        align-items: center;
        margin-left: 0;
        margin-right: 0;

        font-size: var(--fontsize_16);
    }
        a.arrow_right.inline::after {
            width: 18px;
            height: 16px;
        }
}



/* ----------------------------------------------

 * ストーリー一覧

---------------------------------------------- */

.group_story__contents .group_story__date {
    margin-top: 24px;
    text-align: right;
}



.group_story__contents img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* PC用判定 */
@media screen and (pointer: fine) and (hover: hover) and (orientation: landscape) and (min-width: 800px) and (min-height: 600px) {
    .group_story__contents img {
        width: 100%;
        height: 100%;
        aspect-ratio: 200 / 53;
    }
}