@charset "utf-8";

/* ====================
worksLink
==================== */
.worksLink {
    padding: 0 var(--contentPadding);
}

.worksLink__list {
    margin: 0 auto;
    max-width: 343px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(30px, 3.47vw, 50px);
}

.worksLink__item a {
    background-image: var(--bg-main);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 50px;
    padding: 20px;
    aspect-ratio: var(--aspectRatio-vertical);
    width: 84vw;
    max-width: 343px;
    box-shadow: var(--dropShadow);
}

.worksLink__category {
    font-family: var(--sub-font);
    font-size: clamp(1.6rem, 1.38vw, 2.0rem);
    font-weight: 300;
    line-height: 1.0;
}

.worksLink__img {
    display: block;
    width: 100%;
    height: clamp(201px, 17.6vw, 254px);
    object-fit: contain;
    transition: transform 0.4s;
}

.worksLink__content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.worksLink__type {
    width: fit-content;
    padding: 5px 20px;
    font-size: 1.2rem;
    border: 0.5px solid var(--darkGray);
}

.worksLink__topic {
    font-size: 2.0rem;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.worksLink__charge {
    color: var(--darkGray);
    font-size: 1.2rem;
}

.worksLink__item.hover .worksLink__img {
    transform: scale(1.1);
}

/* worksLink pc */
@media screen and (min-width: 1024px) {
    .worksLink__list {
        max-width: 736px;
        justify-content: flex-start;
    }

    .worksLink__item {
        width: auto;
    }
}/* pc 769px */

/* ====================
aboutLink
==================== */
.aboutLink-wrapper {
    padding: var(--sectionPadding) 0;
    transition: background-color 1.0s;
}

.aboutLink-wrapper.style-changed {
    background-color: var(--blue);
}

.aboutLink {
    margin: 0 auto;
    width: 84vw;
    max-width: 315px;
    aspect-ratio: var(--aspectRatio-horizontal);
    position: relative;
}

.aboutLink a {
    width: 100%;
    height: 100%;
    background-image: var(--bg-main);
    display: flex;
    justify-content: space-between;
    padding: clamp(20px, 2.08vw, 30px);
    box-shadow: var(--dropShadow);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.aboutLink__main {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.aboutLink__topic {
    font-size: clamp(2.4rem, 2.22vw, 3.2rem);
    font-weight: 500;
    line-height: 1.0;
    letter-spacing: 0.15em;
}

.aboutLink__main img {
    width: clamp(100px, 8.33vw, 120px);
}

.aboutLink__about {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.aboutLink__about img {
    width: clamp(40px, 3.47vw, 50px);
}

.aboutLink__txt {
    display: flex;
    flex-direction: column;
    gap: clamp(10px, 1.04vw, 15px);
    color: var(--darkGray);
    font-family: var(--sub-font);
    font-size: clamp(1.2rem, 0.97vw, 1.4rem);
    font-weight: 500;
    line-height: 1.0;
    letter-spacing: 0.15em;
}

.emphasis {
    background-color: var(--gray);
    width: clamp(120px, 13.8vw, 200px);
    aspect-ratio: 1;
    border-radius: 50%;
    filter: blur(25px);
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
    z-index: 0;
}

/* aboutLink pc */
@media screen and (min-width: 769px) {
    .aboutLink {
        width: clamp(315px, 27.7vw, 400px);
        max-width: none;
    }
}/* pc 769px */

/* ====================
works
==================== */
.works {
    display: flex;
    flex-direction: column;
    gap: clamp(15px, 2.08vw, 30px);
    margin-top: 80px;
    padding: clamp(50px, 6.94vw, 100px) var(--contentPadding) 0;
}

.works__header {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.works__type {
    width: fit-content;
    padding: 5px 20px;
    font-size: clamp(1.4rem, 1.11vw, 1.6rem);
    border: 0.5px solid var(--darkGray);
}

.works__topic {
    font-size: clamp(2.4rem, 2.5vw, 3.6rem);
    font-weight: 500;
    letter-spacing: 0.1em;
}

.works__charge {
    color: var(--darkGray);
    font-size: clamp(1.4rem, 1.11vw, 1.6rem);
}

.works__mainImg {
    margin: 0 auto;
    max-width: 700px;
    height: clamp(250px, 31.2vw, 450px);
    object-fit: contain;
}

.works__mainImg--banner {
    object-fit: cover;
}

.overView {
    margin: 0 auto;
    max-width: 700px;
}

.overView__txt {
    font-size: clamp(1.3rem, 0.97vw, 1.4rem);
    line-height: 2.0;
}

.overView__txt:last-of-type {
    margin-top: 15px;
}

.overView__txt a {
    text-decoration: underline;
}

.mock {
    width: 100%;
    height: auto;
    padding-top: clamp(50px, 6.94vw, 100px);
}

.mock img {
    object-fit: cover;
}

.dsc__list {
    max-width: var(--max-contentWidth);
    margin: 0 auto;
    padding: var(--sectionPadding) var(--contentPadding);
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.dsc {
    display: flex;
    flex-direction: column;
    padding: clamp(20px, 2.08vw, 30px);
    width: 100%;
    background-image: var(--bg-main);
    box-shadow: var(--dropShadow);
}

.dsc__topic {
    width: 100%;
    display: flex;
    align-items: center;
    color: var(--blue);
    font-size: clamp(1.6rem, 1.66vw, 2.4rem);
    font-weight: 500;
    line-height: 2.0;
    white-space: nowrap;
}

.dsc__topic::after {
    content: '';
    display: inline-block;
    width: 100%;
    height: 1px;
    background-color: var(--lightGray);
    margin-left: clamp(15px, 2.08vw, 30px);
}

.dsc__txt {
    margin-top: 15px;
    font-size: clamp(1.3rem, 0.97vw, 1.4rem);
    line-height: 2.0;
}

.dsc__txt img {
    margin-top: 30px;
}

.process__group {
    display: flex;
}

.process__topic {
    width: clamp(120px, 10.5vw, 150px);
    font-weight: 400;
    line-height: 2.0;
}

.process__txt {
    margin-left: 15px;
    line-height: 2.0;
}

.comps-wrapper {
    background-image: var(--bg-main);
}

.comps {
    margin: 0 auto;
    padding: var(--sectionPadding) var(--contentPadding);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.comps__txt {
    font-family: var(--sub-font);
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: 0.05em;
}

.comps img {
    margin: 10px auto 0;
}

.comps-sp_pc {
    display: none;
}

.banner {
    background-image: var(--bg-main);
    padding: var(--sectionPadding) var(--contentPadding);
}

.banner img {
    display: block;
    margin: 0 auto;
    max-width: 600px;
}

.banner__txt {
    margin-top: clamp(15px, 2.08vw, 30px);
    text-align: center;
    font-size: clamp(1.3rem, 0.97vw, 1.4rem);
    line-height: 2.0;
}

/* works pc */
@media screen and (min-width: 769px) {
    .works__header {
        margin-left: 6.94vw;
    }

    .spBr {
        display: none;
    }

    .dsc--target, .dsc--purpose {
        height: 250px;
    }

    .dsc {
        align-items: flex-end;
    }

    .dsc--target, .dsc--purpose, .dsc--period, .dsc--tool {
        width: calc(50% - 15px);
    }

    .dsc__txt {
        width: clamp( 267px, 53%, 600px);
    }

    .comps {
        flex-direction: row;
        align-items: flex-start;
        max-width: 850px;
    }

    .comps__pc {
        width: 70.5%;
    }

    .comps__sp {
        width: 23.5%;
    }

    .comps-sp_pc {
        display: block;
    }

    .comps-sp_sp {
        display: none;
    }
}/* pc 769px */

/* ====================
allWorks
==================== */
.allWorks {
    padding: clamp(50px, 6.94vw, 100px) var(--contentPadding);
    background-color: var(--gray);
}

.allWorks__topic {
    color: var(--white);
    font-family: var(--sub-font);
    font-size: clamp(2.4rem, 2.22vw, 3.2rem);
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
}

.allWorks__topic span {
    display: block;
    font-family: var(--main-font);
    font-size: clamp(1.6rem, 1.38vw, 2.0rem);
    font-weight: 400;
}

.allWorks__list {
    margin: clamp(50px, 5.55vw, 80px) auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(15px, 2.08vw, 30px);
    max-width: var(--max-contentWidth);
}