/* CSS Document */



.featuredCategory {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: min( calc( 60 * 100vw / var( --dw ) ), 60px ) 0;
    width: min( 85.9427vw, 1290px );
    margin: min( calc( 100 * 100vw / var( --dw ) ), 100px ) auto 0;
    padding: min( calc( 100 * 100vw / var( --dw ) ), 100px ) 0;
    border-top: 2px solid #C2C2C2;
}
@media screen and (max-width: 767px) {
    .featuredCategory {
        gap: calc( 60 * 100vw / var( --dw ) ) 0;
        margin: calc( 50 * 100vw / var( --dw ) ) auto 0;
        padding: calc( 60 * 100vw / var( --dw ) ) 0;
    }
}



.featuredCategory-title {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: min( calc( 7 * 100vw / var( --dw ) ), 7px ) 0;
    width: 100%;
    margin: 0;
    padding: 0;
}
.featuredCategory-title-en {
    position: relative;
    margin: 0;
    padding: 0;
}
.featuredCategory-title-jp {
    position: relative;
    margin: 0;
    padding: 0;
}
@media screen and (max-width: 767px) {
    .featuredCategory-title {
        gap: calc( 7 * 100vw / var( --dw ) ) 0;
    }
    .featuredCategory-title-en {
    }
    .featuredCategory-title-jp {
    }
}



.featuredCategory-list {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: min( calc( 30 * 100vw / var( --dw ) ), 30px ) 0;
    width: 100%;
    margin: 0;
    padding: 0;
}
.featuredCategory-list-item {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 min( calc( 8 * 100vw / var( --dw ) ), 8px );
    width: 30%;
    max-width: min( calc( 410 * 100vw / var( --dw ) ), 410px );
    aspect-ratio: 410 / 100;
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: min( calc( 22 * 100vw / var( --dw ) ), 22px );
    line-height: 1;
    letter-spacing: 0.03em;
    border-radius: 9999px;
    overflow: hidden;
}
.featuredCategory-list-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: 0.5s;
}
.featuredCategory-list-item:hover::before {
    transform: scale( 1.2 );
}
.featuredCategory-list-item.cat_01::before { background-image: url( '../../img/common/featuredKeyword-list-item_manufacturing.webp' ); }
.featuredCategory-list-item.cat_02::before { background-image: url( '../../img/common/featuredKeyword-list-item_owner.webp' ); }
.featuredCategory-list-item.cat_03::before { background-image: url( '../../img/common/featuredKeyword-list-item_bousai.webp' ); }
.featuredCategory-list-item.cat_04::before { background-image: url( '../../img/common/featuredKeyword-list-item_living.webp' ); }
.featuredCategory-list-item.cat_05::before { background-image: url( '../../img/common/featuredKeyword-list-item_life.webp' ); }
.featuredCategory-list-item.cat_06::before { background-image: url( '../../img/common/featuredKeyword-list-item_gooddesign.webp' ); }
.featuredCategory-list-item.cat_07::before { background-image: url( '../../img/common/featuredKeyword-list-item_compact.webp' ); }


.featuredCategory-list-item span {
    position: relative;
    display: inline-block;
    color: #fff;
    font-size: min( calc( 22 * 100vw / var( --dw ) ), 22px );
    line-height: 1;
    letter-spacing: 0.03em;
}
.featuredCategory-list-item span.icon {
    position: relative;
    display: inline-block;
    width: min( calc( 16 * 100vw / var( --dw ) ), 16px );
    height: min( calc( 16 * 100vw / var( --dw ) ), 16px );
    background-image: url( '../../img/common/icon_blink.white.svg' );
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
@media screen and (max-width: 767px) {
    .featuredCategory-list {
        gap: calc( 30 * 100vw / var( --dw ) ) 0;
    }
    .featuredCategory-list-item {
        width: 100%;
        max-width: none;
        font-size: calc( 22 * 100vw / var( --dw ) );
    }
    .featuredCategory-list-item.cat_01 { }
    .featuredCategory-list-item.cat_02 { }
    .featuredCategory-list-item.cat_03 { }
    .featuredCategory-list-item.cat_04 { }
    .featuredCategory-list-item.cat_05 { }
    .featuredCategory-list-item.cat_06 { }
    .featuredCategory-list-item.cat_07 { }
    .featuredCategory-list-item span {
        font-size: calc( 22 * 100vw / var( --dw ) );
    }
    .featuredCategory-list-item span.icon {
        width: calc( 16 * 100vw / var( --dw ) );
        height: calc( 16 * 100vw / var( --dw ) );
    }
}


