@charset "utf-8";

/* マウスオーバー設定===================== */
.works__imgWrap {
  margin-top: 16px;
  position: relative;
  width: 100%;
  height: 50%;
  overflow: hidden;
  border-radius: 10px;
}

.works__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.works__item img:hover {
  transform: scale(1.1);
}

/* 制作事例===================================== */
.topic__wrap {
    width: 100%;
    margin-top: 64px;
    padding: 20px 0 60px;
    background-color: rgba(49, 67, 113, 0.6);
    background-blend-mode: multiply;
    background-size: cover;
    background-repeat: no-repeat;
    color: var(--primary-white);
    position: relative;
}

.topic__imgWrap {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    overflow: hidden;
}

.topic__imgWrap img {
    width: 100vw;
}

.topic__sub {
    color: var(--primary-white);
}

.local__nav {
    display: none;
}

.tag__wrap {
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    height: 60px;
    width: 100%;
    padding: 0 16px;
}

.tag {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30.5vw;
    max-width: 320px;
    height: 60px;
    padding: 10px 16px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
}

.tag a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.tag--current {
    background-color: var(--primary-white);
    color: var(--primary-navy);
    border-radius: 10px 10px 0 0;
}

.works__content {
    padding: 0 16px 64px;
}

.topic__txt {
    margin-top: 64px;
    font-size: 1.4rem;
    font-weight: 500;
}

.works__item {
    margin-top: 32px;
}

.works__industry {
    display: flex;
    gap: 12px;
}

.works__industryName {
    padding: 5px 10px;
    background-color: var(--primary-navy);
    color: var(--primary-white);
    font-size: 1.4rem;
}


.works__client {
    margin-top: 20px;
    font-size: 1.4rem;
    font-weight: 600;
}

.works__name {
    margin-top: 2px;
    font-size: 2rem;
    font-weight: 600;
}

.works__spec {
    display: inline-block;
    margin-top: 8px;
    padding: 5px 10px;
    color: var(--primary-white);
    font-size: 1rem;
    font-weight: 600;
    background-color: var(--primary-blue);
    border-radius: 5px;
}

.works__category {
    margin-top: 6px;
    color: var(--primary-blue);
    font-size: 1.4rem;
    font-weight: 600;
}

.page {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 64px;
    gap: 12px;
}

.page__item {
    font-size: 1.4rem;
    font-weight: 600;
}

.page__item--current {
    background-color: var(--primary-navy);
    color: var(--primary-white);
    padding: 4px 8px;
}

/* 制作事例＠PC表示================== */
@media screen and (min-width: 769px) {
    .topic__wrap {
        width: 100%;
        margin-top: 0px;
        padding: 20px 0 80px;
    }

    .topic {
        margin-top: 24px;
        height: 240px;
    }

    .topic__main {
        font-size: 4rem;
    }

    .topic__sub {
        font-size: 2.4rem;
    }

    .local__nav {
        position: absolute;
        top: 0;
        left: 0;
        transform: translate(30%, 60%);
        display: flex;
        font-size: 1.2rem;
        font-weight: 400;
        gap: 16px;
    }

    .tag__wrap {
        height: 90px;
        width: 65vw;
    }

    .tag {
        width: 20vw;
        height: 90px;
        padding: 10px 20px;
        font-size: 2rem;
        font-weight: 500;
    }

    .tag--current {
        border-radius: 20px 20px 0 0;
    }

    .works__content {
        padding: 0 120px 64px;
    }

    .topic__txt {
        margin-top: 100px;
        text-align: center;
        font-size: 2rem;
        font-weight: 500;
    }

    .works__list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 100px;
        gap: 0 3.2vw;
    }

    .works__item {
        margin-top: 32px;
        width: 34vw;
        max-width: 480px;
    }

    .works__industry {
        gap: 12px;
    }

    .works__industryName {
        padding: 5px 10px;
        background-color: var(--primary-navy);
        color: var(--primary-white);
        font-size: 1.4rem;
        font-weight: 400;
    }

    .works__client {
        margin-top: 20px;
        font-size: 1.6rem;
        font-weight: 600;
    }

    .works__name {
        margin-top: 2px;
        font-size: 2.4rem;
        font-weight: 600;
    }

    .works__spec {
        display: inline-block;
        margin-top: 8px;
        padding: 5px 10px;
        color: var(--primary-white);
        font-size: 1.2rem;
        font-weight: 500;
        background-color: var(--primary-blue);
        border-radius: 5px;
    }

    .works__category {
        margin-top: 6px;
        color: var(--primary-blue);
        font-size: 1.6rem;
        font-weight: 500;
    }

}