@charset "UTF-8";

/*==========================
work
==========================*/
.section--work {
    margin: 0 7.2%;
}

.work__item{
    margin-top: 5rem;
    width: 100%;
    text-align: center;
}

.work__item iframe {
    aspect-ratio: 16 / 9;
    width: 85.3vw;
    height: auto;
}

.work__img {
    width: 100%;
}

.work__txt {
    width: 100%;
}

.work__topic {
    margin-top: 1.5rem;
    color: var(--primary-green);
    font-family: "Zen Maru Gothic";
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.5; /* 36px */
}

.work__topic a::after {
    display: inline-block;
    content: '';
    margin-left: 0.4rem;
    background-image: url(../img/heroicons-solid_external-link.svg);
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.work__detail {
    display: inline-flex;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    gap: 0.5rem;
}

.work__detail--animetion,
.work__detail--illustration {
    display: inline-block;
    padding: 0.6rem 2rem;
    border-radius: 20px;
    color: #545454;
    font-family: "Zen Maru Gothic";
    font-size: 1.6rem;
    line-height: 1; /* 16px */
}

.work__detail--animetion {
    background-color: var(--primary-yellowhigh);
}

.work__detail--illustration {
    background-color: var(--primary-greenhigh);
}

.work__content {
    margin-top: 1.5rem;
    font-family: "Zen Maru Gothic";
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.2;
}

.work__content::before {
    display: inline-block;
    content: '担当作業：';
}

.work__copyright {
    display: block;
    margin-top: 1rem;
    font-family: "Zen Maru Gothic";
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1;
}

/* pc 768px */
@media screen and (min-width:768px) {
    .section--work {
        margin: 0 14.2%;
    }

    .work__item{
        margin-top: 8rem;
        text-align: left;
        display: flex;
        align-items: center;
        gap: 2rem;
    }
    
    .work__item iframe {
        aspect-ratio: 16 / 9;
        width: 38.9vw;
        height: auto;
    }

    .work__img {
        width: 38.9vw;
        height: auto;
    }

    .work__txt {
        width: 43.6%;
    }

    .work__topic {
        margin-top: 0;
    }

    .work__topic a::after {
        margin-left: 0.4rem;
    }

    .work__content {
        margin-top: 1.5rem;
    }
}