@charset "utf-8";
/*==========================
Article header
==========================*/
.mainVisual--top {
    margin: 80px 8% 0;
    position: relative;
}

.main__pc--top {
    display: none;
}

.box__sp {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    font-size: 1.2rem;
    transform:skewX(-15deg);
    position: absolute;
    /* top: -20%; */
    bottom: 100%;
    right: 15%;
}

.box__sp svg {
    overflow: visible;
}

.box__sp path {
    fill: none;
}

.box__sp text {
    fill: var(--primary-black);
}

.box__pc {
    display: none;
}

.box__tb {
    display: none;
}

.images--top {
    display: flex;
    margin-top: 40px;
}

.slick-slider {
    overflow: hidden;
}

/* article header tablet */
@media screen and (min-width:651px) {
    .box__sp {
        display: none;
    }

    .box__tb {
        display: block;
        width: 70px;
        height: 70px;
        font-size: 1.2rem;
        transform:skewX(-15deg);
        position: absolute;
        bottom: 90%;
        right: 8%;
    }

    .box__tb svg {
        overflow: visible;
    }

    .box__tb path {
        fill: none;
    }

    .box__tb text {
        fill: var(--primary-black);
    }

    .images--top {
        margin-top: 100px;
    }
}/* tablet 651px */

/* article header pc */
@media screen and (min-width:769px) {
    .mainVisual--top {
        margin: 100px 6.7% 0;
        position: relative;
    }

    .main__pc--top {
        display: block;
    }

    .main__sp--top {
        display: none;
    }

    .box__sp {
        display: none;
    }

    .images--top {
        margin-top: 100px;
    }
}/* pc 769px */

/* article header pc */
@media screen and (min-width:1299px) {
    .box__sp {
        display: none;
    }

    .box__tb {
        display: none;
    }

    .box__pc {
        display: block;
        width: 100px;
        height: 100px;
        font-size: 1.2rem;
        transform:skewX(-15deg);
        position: absolute;
        bottom: 90%;
        right: 8%;
    }

    .box__pc svg {
        overflow: visible;
    }

    .box__pc path {
        fill: none;
    }

    .box__pc text {
        fill: var(--primary-black);
    }
}/* pc 1299px */

/*==========================
about
==========================*/
.btn__right {
    text-align: right;
}

.btn--about {
    display: inline-block;
    color: var(--primary-black);
    font-size: 1.4rem;
    font-weight: 500;
    position: relative;
    margin: 70px 8% 0 0;
    /* margin-top: 70px; */
}

.btn--about::after {
    content: url(../images/btn-arrow__sp.svg);
    display: block;
    position: absolute;
    top: 5px;
    left: 0;
}

/* about pc */
@media screen and (min-width:769px) {
    .btn--about {
        font-size: 2rem;
        position: relative;
        margin: 24px 8% 0 0;
    }

    .btn--about::after {
        content: url(../images/btn-arrow__pc.svg);
        display: block;
        position: absolute;
        top: 10px;
        left: 0;
    }
}/* pc 769px */

/*==========================
works
==========================*/
.section--works {
    margin-top: 15px;
}

.topic__works {
    margin-left: 8%;
    margin-right: 8%;
}

.works__list {
    margin-top: 45px;
}

.works__item {
    margin: 70px 8% 0;
}

.works__item:first-of-type {
    margin-top: 0;
}

.works__mainTopic {
    color: var(--primary-black);
    font-size: 1.8rem;
    font-weight: 400;
}

.works__detail {
    display: inline-block;
    color: var(--primary-black);
    font-size: 1.6rem;
    font-weight: 400;
    background-color: var(--primary-lightGray);
    margin-top: 20px;
    padding: 8px 20px;
    border-radius: 24px;
}

.works__tag {
    color: var(--primary-txtGray);
    font-size: 1.6rem;
    font-weight: 400;
    margin-top: 15px;
}

.works__tag span {
    margin-left: 15px;
}

.works__img {
    margin-top: 30px;
}

.works__img--banner {
    display: block;
    width: 35%;
    margin: 30px auto 0;
}

/* works pc */
@media screen and (min-width:769px) {
    .section--works {
        margin-top: 150px;
    }

    .topic__works {
        margin-left: 6.7%;
        margin-right: 6.7%;
    }

    .works__list {
        margin-top: 80px;
    }

    .works__item {
        margin: 40px 0 0;
        padding: 37px 6.7%;
        flex-basis: 50%;
        transition: 0.8s;
        position: relative;
    }
    
    .works__item::after {
        content: '';
        background-image: url(../images/bg.jpg);
        background-color:rgba(255,255,255,0.8);
        background-blend-mode:lighten;
        background-size: cover;
        background-repeat: no-repeat;
        width: 100%;
        height: 100%;
        z-index: -100;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        transition: 0.5s;
    }

    .works__item:hover::after {
        opacity: 1;
    }

    .works__item a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .works__mainTopic {
        font-size: 2.2vw;
    }

    .works__detail {
        display: inline-block;
        font-size: 1.2vw;
        margin-top: 30px;
        padding: 12px 25px;
        border-radius: 25px;
    }

    .works__tag {
        font-size: 1.3vw;
    }

    .works__tag span {
        margin-left: 20px;
    }

    .works__img {
        flex-basis: 50%;
        width: 40%;
        margin-top: 0;
    }

    .works__img--banner {
        width: 15%;
        margin: 0 20%;
    }
}/* pc 769px */