/* secHero */
.secHero{
    height: 26rem;
    background: url(../img/works/bgHero.jpg) center top / cover;
    display: flex;
    align-items: center;
}
.secHero .txtJpImg{
    margin-top: 2rem;
}
@media only screen and (max-width:1215px){
    .secHero{
        height: 10rem;
        background: url(../img/works/bgHero_sp.jpg) center top / cover;
    }
    .secHero .titEngImg{
        width: 17.8rem;
    }
    .secHero .txtJpImg{
        width: 5.3rem;
        margin-top: 1rem;
    }
}

/* secWorks */
.secWorks{
    margin-top: 13.8rem;
}
.secWorks .txtTit{
    text-align: center;
    position: relative;
}
.secWorks .txtTit::after{
    content: "";
    width: 22rem;
    height: 1.65rem;
    background: var(--colorTitBorder);
    position: absolute;
    bottom: -0.7rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}
.secWorks .txtAbout{
    font-size: var(--pcFontSize20);
    line-height: var(--pcLineHeight20_38);
    letter-spacing: var(--pcLetterSpacing20_50);
    text-align: center;
    margin-top: 4.3rem;
}
/* boxSearch */
.secWorks .boxSearch{
    margin-top: 7.2rem;
}
.secWorks .boxSearch .linkMain{
    width: 100%;
    height: 8.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    padding: 0 3.9rem 0 9.7rem;
    background: var(--textColor);
    position: relative;
    cursor: pointer;
}
.secWorks .boxSearch .txtLeft{
    font-size: var(--pcFontSize23);
    letter-spacing: var(--pcLetterSpacing23_50);
    color: var(--colorWhite);
    position: relative;
}
.secWorks .boxSearch .txtLeft::after{
    content: "";
    width: 3.4rem;
    height: 3.4rem;
    background: url(../img/works/iconSearch.png) center top / cover;
    position: absolute;
    top: 50%;
    left: -7rem;
    transform: translateY(-50%);
}
.secWorks .boxSearch .txtRight{
    font-size: var(--pcFontSize22);
    letter-spacing: var(--pcLetterSpacing22_50);
    color: var(--colorWhite);
    display: none;
}
.secWorks .boxSearch .txtRight.active{
    display: block;
    position: relative;
    left: 1.5rem;
}
.secWorks .boxSearch .linkMain:before,
.secWorks .boxSearch .linkMain:after{
    content: "";
    background: var(--colorWhite);
    width: 1.7rem;
    height: 0.4rem;
    position: absolute;
    right: 11.2rem;
    top: calc(50% - 0.4rem);
    display: block;
    transition: all 0.4s ease;
}
.secWorks .boxSearch .linkMain:after{
    transform: rotate(90deg);
}
.secWorks .boxSearch .linkMain.on:after{
    transform: rotate(360deg);
}
.secWorks .boxSearch .boxSearchList{
    display: none;
    padding: 3.7rem 7.8rem 4.6rem;
    background: var(--colorTab);
}
.secWorks .boxSearch .boxSearchListIn{
    display: flex;
    flex-direction: column;
    gap: 2.6rem;
}
.secWorks .boxSearch .itemSearch{
    display: flex;
}
.secWorks .boxSearch .txtItem{
    width: 16.8rem;
    font-size: var(--pcFontSize19);
    letter-spacing: var(--pcLetterSpacing19_50);
    font-weight: bold;
    position: relative;
    padding-top: 1.2rem;
}
.secWorks .boxSearch .txtItem::after{
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 0.5rem solid transparent;
    border-bottom: 0.5rem solid transparent;
    border-left: 0.85rem solid var(--textColor);
    border-right: 0;
    position: absolute;
    top: 1.6rem;
    left: -2rem;
}
.secWorks .boxSearch .boxSearchTabList{
    width: calc(100% - 16.5rem);
    display: flex;
    flex-wrap: wrap;
    gap: 1.3rem;
}
.secWorks .boxSearch input[type="checkbox"]{
    visibility: hidden;
    position: absolute;
    left: 0;
    top: 0;
}
.secWorks .boxSearch .tabSearch{
    width: auto;
    min-width: 13rem;
    height: 4rem;
    padding: 0 0.5rem;
    background: var(--colorWhite);
    border-radius: 0.5rem;
    font-size: var(--pcFontSize16);
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.secWorks .boxSearch .inputSearch:checked + .tabSearch{
    background: var(--textColor);
    color: var(--colorWhite);
}
.secWorks .boxBottom{
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 4rem;
}
.secWorks .boxBottom .btn{
    width: 28rem;
    height: 5rem;
    border-radius: 2.5rem;
    border: 0.1rem solid var(--textColor);
    font-size: var(--pcFontSize19);
    letter-spacing: var(--pcLetterSpacing19_50);
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}
.secWorks .boxBottom .btnClear::after,
.secWorks .boxBottom .btnClear::before{
    content: "";
    width: 1.5rem;
    height: 0.1rem;
    background-color: var(--textColor);
    transform-origin: center;
    position: absolute;
    top: 50%;
    right: 2.2rem;
}
.secWorks .boxBottom .btnClear::before{
    transform: translateY(-50%) rotate(45deg);
}
.secWorks .boxBottom .btnClear::after{
    transform: translateY(-50%) rotate(-45deg);
}
.secWorks .boxBottom .btnSearch{
    background: var(--textColor);
    color: var(--colorWhite);
}
.secWorks .boxBottom .btnSearch::after{
    content: "";
    width: 0.75rem;
    height: 1.4rem;
    background: url(../img/works/iconArrow.png) center top / cover;
    position: absolute;
    top: 50%;
    right: 2.5rem;
    transform: translateY(-50%);
}
.secWorks .boxList{
    display: flex;
    flex-wrap: wrap;
    gap: 10.5rem 6rem;
    margin-top: 14rem;
}
.secWorks .item{
    width: calc((100% - 6rem) / 2);
}
.secWorks .boxtop{
    position: relative;
}
.secWorks .boxImg{
    height: 0;
    padding-top: 62.106%;
}
.secWorks .txtMore{
    width: 12.9rem;
    height: 3.5rem;
    background: var(--keyColor);
    font-size: var(--pcFontSize18);
    letter-spacing: var(--pcLetterSpacing18_50);
    color: var(--colorWhite);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 1rem;
    position: absolute;
    bottom: 0;
    right: 0;
}
.secWorks .txtIn{
    position: relative;
}
.secWorks .txtIn::after{
    content: "";
    width: 0.75rem;
    height: 1.4rem;
    background: url(../img/works/iconArrow.png) center top / cover;
    position: absolute;
    top: 50%;
    right: -2.5rem;
    transform: translateY(-50%);
}
.secWorks .txtWorksTit{
    font-size: var(--pcFontSize28);
    line-height: var(--pcLineHeight28_42);
    letter-spacing: var(--pcLetterSpacing28_50);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    max-height: 8.4rem;
    margin-top: 2.2rem;
}
.secWorks .txtSubTit{
    font-size: var(--pcFontSize20);
    letter-spacing: var(--pcLetterSpacing20_50);
    margin-top: 1.1rem;
}
.secWorks .boxTabList{
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.9rem;
}
.secWorks .boxTabList .tab{
    width: auto;
    min-width: 12.9rem;
    height: 4.5rem;
    padding: 0 0.5rem;
    background: var(--colorTab);
    border-radius: 0.3rem;
    font-size: var(--pcFontSize16);
    display: flex;
    align-items: center;
    justify-content: center;
}
@media only screen and (max-width:1215px){
    .secWorks{
        margin-top: 4.5rem;
    }
    .secWorks .txtTit{
        width: 8.7rem;
        margin: 0 auto;
    }
    .secWorks .txtTit::after{
        width: 10rem;
        height: 0.8rem;
        bottom: -0.3rem;
    }
    .secWorks .txtAbout{
        font-size: var(--spFontSize12);
        line-height: var(--spLineHeight12_22);
        letter-spacing: var(--pcLetterSpacing20_50);
        margin-top: 2rem;
    }
    /* boxSearch */
    .secWorks .boxSearch{
        margin-top: 1.5rem;
    }
    .secWorks .boxSearch .linkMain{
        height: 4.1rem;
        padding: 0 1.5rem 0 4.9rem;
    }
    .secWorks .boxSearch .txtLeft{
        font-size: var(--spFontSize13);
        letter-spacing: var(--spLetterSpacing13_50);
    }
    .secWorks .boxSearch .txtLeft::after{
        width: 1.7rem;
        height: 1.7rem;
        left: -3.5rem;
    }
    .secWorks .boxSearch .txtRight{
        font-size: var(--spFontSize12);
        letter-spacing: var(--spLetterSpacing12_50);
    }
    .secWorks .boxSearch .txtRight.active {
        left: 0.5rem;
    }
    .secWorks .boxSearch .linkMain:before,
    .secWorks .boxSearch .linkMain:after{
        width: 1.0rem;
        height: 0.2rem;
        right: 5.6rem;
        top: calc(50% - 0.2rem);
    }
    .secWorks .boxSearch .boxSearchList{
        padding: 1.3rem 1.5rem 2.7rem;
    }
    .secWorks .boxSearch .boxSearchListIn{
        gap: 1.5rem;
    }
    .secWorks .boxSearch .itemSearch{
        flex-direction: column;
    }
    .secWorks .boxSearch .txtItem{
        width: 100%;
        font-size: var(--spFontSize13);
        letter-spacing: var(--spLetterSpacing13_50);
        padding: 0 0 0 1.4rem;
    }
    .secWorks .boxSearch .txtItem::after{
        border-top: 0.5rem solid transparent;
        border-bottom: 0.5rem solid transparent;
        border-left: 0.85rem solid var(--textColor);
        top: 0.1rem;
        left: 0;
    }
    .secWorks .boxSearch .boxSearchTabList{
        width: 100%;
        gap: 0.75rem 0.5rem;
        padding-top: 0.6rem;
    }
    .secWorks .boxSearch .tabSearch{
        min-width: 9rem;
        height: 2.75rem;
        padding: 0 0.5rem;
        border-radius: 0.5rem;
        font-size: var(--spFontSize11);
    }
    .secWorks .boxBottom{
        gap: 0.8rem;
        margin-top: 2.5rem;
    }
    .secWorks .boxBottom .btn{
        width: 12.1rem;
        height: 2.5rem;
        border-radius: 1.25rem;
        font-size: var(--spFontSize12);
        letter-spacing: var(--spLetterSpacing0);
    }
    .secWorks .boxBottom .btnClear::after,
    .secWorks .boxBottom .btnClear::before{
        width: 1.0rem;
        height: 0.1rem;
        top: calc(50% - 0.1rem);
        right: 1.0rem;
    }
    .secWorks .boxBottom .btnSearch::after{
        width: 0.35rem;
        height: 0.7rem;
        top: calc(50% - 0.1rem);
        right: 1rem;
    }
    .secWorks .boxList{
        gap: 3.7rem;
        margin-top: 3.5rem;
    }
    .secWorks .item{
        width: 100%;
    }
    .secWorks .txtMore{
        width: 6.5rem;
        height: 1.75rem;
        font-size: var(--spFontSize10);
        letter-spacing: var(--spLetterSpacing10_50);
        padding-right: 0.5rem;
    }
    .secWorks .txtIn::after{
        width: 0.35rem;
        height: 0.7rem;
        top: 50%;
        right: -1rem;
    }
    .secWorks .txtWorksTit{
        font-size: var(--spFontSize15);
        line-height: var(--spLineHeight15_21);
        letter-spacing: var(--spLetterSpacing15_50);
        max-height: 4.2rem;
        margin-top: 1rem;
    }
    .secWorks .txtSubTit{
        font-size: var(--spFontSize10);
        letter-spacing: var(--spLetterSpacing10_50);
        margin-top: 0.6rem;
    }
    .secWorks .boxTabList{
        gap: 0.75rem;
        margin-top: 1.2rem;
    }
    .secWorks .boxTabList .tab{
        min-width: 8.5rem;
        height: 2.1rem;
        border-radius: 0.3rem;
        font-size: var(--spFontSize11);
    }
}

.noneTxt{
    font-size: var(--pcFontSize16);
    text-align: center;
    padding: 3rem 0;
}
@media only screen and (max-width:1215px){
    .noneTxt{
        font-size: var(--spFontSize12);
        line-height: var(--spLineHeight12_18);
        padding: 2rem 0;
    }
}

/* secCmnIndexPager */
.secCmnIndexPager{
    margin-top: 15rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.secCmnIndexPager .boxList{
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
}
.secCmnIndexPager .btn{
    min-width: 5rem;
    height: 5rem;
    border-radius: 2.5rem;
    text-align: center;
}
.secCmnIndexPager a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.secCmnIndexPager .btn{
    margin:-0.1rem 0 0 -0.1rem;
}
.secCmnIndexPager .on{
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: none;
    background: var(--textColor);
    color: #fff;
}
.secCmnIndexPager .btn.dots{
    border: 0;
    background: transparent;
    display: block;
    height: 3rem;
    padding: 0.7rem 0;
    font-size: var(--pcFontSize18);
    color: var(--textColor);
}
.secCmnIndexPager .inner{
    font-size: var(--pcFontSize18);
    color: inherit;
    text-decoration: none;
    font-weight: 700;
}
.secCmnIndexPager .btnPrev,
.secCmnIndexPager .btnNext{
    width: 12.5rem;
    height: 5rem;
    border-radius: 2.5rem;
    text-align: center;
    position: relative;
    background: var(--colorTab);
    flex-shrink: 0;
}
.secCmnIndexPager .btnPrev{
    margin-right: 2rem;
}
.secCmnIndexPager .btnNext{
    margin-left: 2rem;
}
@media only screen and (max-width:1215px){
    .secCmnIndexPager{
        margin-top: 7.5rem;
    }
    .secCmnIndexPager .btn{
        min-width: 2.8rem;
        height: 2.8rem;
        border-radius: 1.4rem;
    }
    .secCmnIndexPager .btn{
        margin:-0.1rem 0 0 -0.1rem;
    }
    .secCmnIndexPager .btn.dots{
        height: 2.8rem;
        padding: 0.5rem 0;
        font-size: var(--spFontSize10);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .secCmnIndexPager .inner{
        font-size: var(--spFontSize10);
    }
    .secCmnIndexPager .btnPrev,
    .secCmnIndexPager .btnNext{
        width: 6rem;
        height: 2.8rem;
        border-radius: 1.4rem;
    }
    .secCmnIndexPager .btnPrev{
        margin-right: 0.5rem;
    }
    .secCmnIndexPager .btnNext{
        margin-left: 0.5rem;
    }
}

/* secBnr */
.secBnr{
    margin: 17rem auto 14.7rem;
}
@media only screen and (max-width:1215px){
    .secBnr{
        margin: 8.5rem auto 0;
    }
}