@charset "utf-8";
/*-----------------------------------------------
    secCmnHero
-----------------------------------------------*/
.secCmnHero{
    background-image: url(../img/modelhouse/bgCmnHero.jpg);
}
@media only screen and (max-width:1215px){
    .secCmnHero{
        background-image: url(../img/modelhouse/bgCmnHero_sp.jpg);
    }
}
/*-----------------------------------------------
    boxModel
-----------------------------------------------*/
.boxModel{
    margin-top: 7.5rem;
}
.boxModel .boxModelhouse{
    margin-top: 10rem;
}
.boxModel .boxMachikado{
    margin-top: 15rem;
}
/* boxHead */
.boxHead{
    margin-top: 4rem;
    position: relative;
    display: flex;
    align-items: center;
}
.boxHead .boxHeadTit{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    background-color: var(--whiteColor);
    z-index: 1;
    padding: 6rem;
}
.boxHead .boxHeadTit .tit{
    font-size: var(--pcFontSize30);
    font-weight: bold;
}
.boxHead .boxHeadTit .txt{
    font-size: var(--pcFontSize16);
    line-height: var(--pcLineHeight16_32);
    letter-spacing: var(--pcLetterSpacing16_50);
    margin-top: 2rem;
}
.boxHead .boxBtnList{
    display: flex;
    gap: 2rem;
    margin-top: 4rem;
}
.boxHead .boxBtnList .item{
    width: 25rem;
    height: 6rem;
}
.boxHead .boxBtnList .link{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 4rem;
    font-size: var(--pcFontSize14);
    background-color: var(--whiteColor);
    border: 1px solid var(--textColor);
}
.boxHead .boxBtnList .link:before,
.boxHead .boxBtnList .link:after{
    position: absolute;
    content: '';
    margin: auto;
    display: block;
    top: 0;
    bottom: 0;
    right: 3rem;
    width: 1px;
    height: 1.6rem;
    background-color: var(--grayColor_light7);
    transition: .6s;
}
.boxHead .boxBtnList .link:before{
    height: 0.4rem;
    transform: translateX(0.1rem) translateY(0.5rem) rotate(32deg);
}
/* boxSlider */
.boxHead .boxSlider{
    margin: 0 auto 0 0;
}
.boxHead .boxSlider .swiper{
    overflow: hidden;
}
.boxHead .boxSlider .imgSlider{
    display: block;
}
.boxHead .swiper-pagination.cmnPagination{
    justify-content: flex-start;
}
@media only screen and (max-width:1215px){
    .boxModel{
        margin-top: 3rem;
    }
    .boxModel .boxModelhouse{
        margin-top: 6rem;
    }
    .boxModel .boxMachikado{
        margin-top: 8rem;
    }
    /* boxHead */
    .boxHead{
        margin-top: 4rem;
        flex-direction: column;
    }
    .boxHead .boxHeadTit{
        position: static;
        padding: 0;
        transform: inherit;
        margin-top: 4rem;
    }
    .boxHead .boxHeadTit .tit{
        font-size: var(--spFontSize20);
    }
    .boxHead .boxHeadTit .txt{
        font-size: var(--spFontSize14);
        line-height: var(--spLineHeight14_26);
        letter-spacing: var(--spLetterSpacing14_0);
        margin-top: 1rem;
    }
    .boxHead .boxBtnList{
        justify-content: space-between;
        gap: 0;
    }
    .boxHead .boxBtnList .item{
        width: 49.278%;
        height: 5.5rem;
    }
    .boxHead .boxBtnList .link{
        justify-content: center;
        padding-left: 0;
        font-size: var(--spFontSize12);
    }
    .boxHead .boxBtnList .link:before,
    .boxHead .boxBtnList .link:after{
        top: auto;
        bottom: -1rem;
        right: 0;
        left: 0;
    }
    .boxHead .boxBtnList .link:before {
        height: 0.4rem;
        transform: translateX(0.1rem) translateY(0rem) rotate(32deg);
    }
    /* boxSlider */
    .boxHead .boxSlider{
        margin: 0 auto 0 0;
    }
    .boxHead .boxSlider .swiper{
        overflow: hidden;
    }
    .boxHead .boxSlider .imgSlider{
        display: block;
    }
    .boxHead .swiper-pagination.cmnPagination{
        display: none;
    }
}
/* boxModelTit */
.boxModel .boxModelTit{
    position: relative;
    padding-right: 17rem;
    display: inline-block;
}
.boxModel .boxModelTit:after{
    position: absolute;
    content: '';
    margin: auto;
    display: block;
    top: 0;
    bottom: 0;
    right: 0;
    width: 15rem;
    height: 1px;
    background-color: var(--textColor);
}
.boxModel .boxModelTit .tit{
    font-size: var(--pcFontSize40);
    font-weight: bold;
}
@media only screen and (max-width:1215px){
    .boxModel .boxModelTit{
        padding-right: 0;
        text-align: center;
        display: block;
    }
    .boxModel .boxModelTit:after{
        display: none;
    }
    .boxModel .boxModelTit .tit{
        font-size: var(--spFontSize20);
    }
}

/* boxList */
.boxModel .boxList{
    display: flex;
    flex-wrap: wrap;
    gap: 6rem 2.5rem;
    margin-top: 4.5rem;
}
.boxModel .boxList .item{
    position: relative;
    display: flex;
    flex-direction: column;
    width: calc((100% - 4.999rem) / 3);
    padding-bottom: 7rem;
}
.boxModel .boxList .link{
    position: relative;
    display: block;
    overflow: visible;
    height: 100%;
}
.boxModel .boxList .img{
    aspect-ratio: 590 / 282;
}
.boxModel .boxList .boxTit{
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.boxModel .boxList .tit,
.boxModel .boxList .txt{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.boxModel .boxList .tit{
    font-size: var(--pcFontSize22);
    line-height: var(--pcLineHeight22_38);
    font-weight: bold;
    margin-top: 1rem;
    line-clamp: 1;
    -webkit-line-clamp: 1;
}
.boxModel .boxList .txt{
    font-size: var(--pcFontSize14);
    line-height: var(--pcLineHeight14_22);
    letter-spacing: var(--pcLetterSpacing14_50);
    margin-top: 1.2rem;
    max-height: calc(var(--pcFontSize14) * var(--pcLineHeight14_22) * 2);
}
.boxModel .boxList .boxMore{
    width: 100%;
    position: absolute;
    bottom: -11rem;
    right: 0;
}
.boxModel .linkMap{
    position: relative;
    font-size: var(--pcFontSize14);
    letter-spacing: var(--pcLetterSpacing14_50);
    color: var(--brownColor_light);
    display: block;
    padding-left: 1.6rem;
}
.boxModel .boxList .linkMap{
    margin-top: 2.5rem;
}
.boxModel .linkMap::before{
    position: absolute;
    content: '';
    margin: auto;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    width: 1.2rem;
    height: 1.6rem;
    background: right top / cover no-repeat;
}
.boxModel .linkMap::before{
    background-image: url(../img/common/iconMap.png);
}
.boxModel .txtMap{
    text-decoration: underline;
}
.boxModel .link:only-child .boxMore{
    bottom: -7rem;
}
@media only screen and (max-width:1215px){
    /* boxList */
    .boxModel .boxList{
        justify-content: space-between;
        gap: 3rem 0;
        margin-top: 2.5rem;
    }
    .boxModel .boxList .item{
        width: 100%;
        padding-bottom: 5rem;
    }
    .boxModel .boxList .boxTit{
        margin-top: 1rem;
        padding: 0 1.5rem;
    }
    .boxModel .boxList .tit{
        font-size: var(--spFontSize20);
        line-height: var(--spLineHeight20_32);
        line-clamp: 2;
        -webkit-line-clamp: 2;
        max-height: calc(var(--spFontSize20) * var(--spLineHeight20_32) * 2);
    }
    .boxModel .boxList .txt{
        font-size: var(--spFontSize12);
        line-height: var(--spLineHeight12_18);
        letter-spacing: var(--spLetterSpacing12_0);
        margin-top: 0.5rem;
        max-height: calc(var(--spFontSize12) * var(--spLineHeight12_18) * 3);
        line-clamp: 3;
        -webkit-line-clamp: 3;
    }
    .boxModel .boxList .boxMore{
        width: 15rem;
        bottom: -6rem;
        right: 1.5rem;
        margin: auto;
    }
    .boxModel .link:only-child .boxMore{
        bottom: -5rem;
    }
    .boxModel .linkMap{
        font-size: var(--spFontSize12);
        letter-spacing: var(--spLetterSpacing12_0);
    }
    .boxModel .boxList .linkMap{
        margin: 1rem 1.5rem 0;
    }
}

/*-----------------------------------------------
    boxModelhouse
-----------------------------------------------*/
.boxModelhouse .boxList {
    gap: 11rem;
    flex-direction: column;
}
.boxModelhouse .boxList .item {
    position: relative;
    width: 100%;
    flex-direction: row;
    padding: 0 5.4rem 10rem;
    background-color: var(--grayColor_light2);
}
.boxModelhouse .boxList .item:before {
    position: absolute;
    content: '';
    margin: auto;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 4rem;
    background-color: var(--whiteColor);
}
.boxModelhouse .boxList .link {
    width: 100%;
    display: flex;
}
.boxModelhouse .item:nth-child(even) .link {
    flex-direction: row-reverse;
}
.boxModelhouse .boxList .boxImg {
    width: 49.669%;
    display: block;
}
.boxModelhouse .boxList .img {
    aspect-ratio: 900 / 431;
}
.boxModelhouse .boxList .boxBtm {
    position: relative;
    width: 28.849%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin-left: 12rem;
}
.boxModelhouse .item:nth-child(even) .boxBtm {
    width: 23%;
    margin: 0 12rem 0 0;
}
.boxModelhouse .boxList .boxMore {
    bottom: 0;
}
.boxModelhouse .boxList .tit {
    font-size: var(--pcFontSize26);
}
@media only screen and (max-width:1215px){
    .boxModelhouse .boxList {
        gap: 3rem 0;
        flex-direction: column;
    }
    .boxModelhouse .boxList .item {
        width: 100%;
        padding: 0 0 9rem 0;
    }
    .boxModelhouse .boxList .item:before {
        display: none;
    }
    .boxModelhouse .boxList .link,
    .boxModelhouse .item:nth-child(even) .link {
        flex-direction: column;
    }
    .boxModelhouse .boxList .boxImg {
        width: 100%;
    }
    .boxModelhouse .boxList .boxBtm {
        width: 100%;
        margin-left: 0;
    }
    .boxModelhouse .item:nth-child(even) .boxBtm {
        width: 100%;
        margin: 0;
    }
    .boxModelhouse .boxList .boxMore {
        bottom: 0;
    }
    .boxModelhouse .boxList .tit {
        font-size: var(--spFontSize20);
    }
}

/*-----------------------------------------------
    boxDetails
-----------------------------------------------*/
.boxModel.boxDetails {
    margin-top: 7.5rem;
}
/* boxHeadTit */
.boxDetails .wrapper {
    width: 100%;
}
/* boxHeadTit */
.boxDetails .boxHeadTit {
    position: relative;
}
.boxDetails .boxHeadTit .img {
    position: relative;
    aspect-ratio: 1920 / 919;
}
.boxDetails .boxHeadTit .img::after{
    position: absolute;
    content: '';
    margin: auto;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--blackColor);
    opacity: 0.4;
}
.boxDetails .boxHeadTit .boxTxt {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 60%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 1;
}
.boxDetails .boxHeadTit .tag {
    min-width: 12rem;
    height: 4rem;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--whiteColor);
    font-size: var(--pcFontSize14);
}
.boxDetails .boxHeadTit .txt {
    font-size: var(--pcFontSize40);
    line-height: var(--pcLineHeight40_70);
    letter-spacing: var(--pcLetterSpacing40_50);
    color: var(--whiteColor);
    font-weight: bold;
}
@media only screen and (max-width:1215px){
    .boxModel.boxDetails {
        margin-top: 8rem;
    }
    .boxDetails {
        margin-top: 5.5rem;
    }
    /* boxHeadTit */
    .boxDetails .boxHeadTit .img {
        aspect-ratio: 375 / 275;
    }
    .boxDetails .boxHeadTit .boxTxt {
        width: 90%;
    }
    .boxDetails .boxHeadTit .tag {
        min-width: 8rem;
        height: 2.5rem;
        font-size: var(--spFontSize12);
    }
    .boxDetails .boxHeadTit .txt {
        font-size: var(--spFontSize18);
        line-height: var(--spLineHeight18_30);
        letter-spacing: var(--spLetterSpacing18_0);
        margin-top: 1rem;
    }
}

/* boxBody */
.boxDetails .boxBody {
    margin: 0 auto 8rem;
}
/* boxInfo */
.boxBody .boxInfo{
    margin-top: 10rem;
    display: flex;
}
/* boxSlider */
.boxBody .boxInfo .swiper{
    overflow: hidden;
    width: 70rem;
}
.boxBody .boxInfo .boxSlider:only-child{
    margin: 0 auto;
}
.boxBody .boxInfo .img{
    aspect-ratio: 700 / 875;
}
.boxBody .boxInfo .imgSlider{
    display: block;
}
/* boxTxt */
.boxBody .boxInfo .boxTit{
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-left: 8rem;
}
.boxBody .boxInfo .boxTit:only-child{
    margin: 0 auto;
    padding: 0;
}
.boxBody .boxInfo .tit{
    font-size: var(--pcFontSize34);
    line-height: var(--pcLineHeight34_50);
    font-weight: bold;
}
.boxBody .boxInfo .txt{
    font-size: var(--pcFontSize16);
    line-height: var(--pcLineHeight16_30);
    letter-spacing: var(--pcLetterSpacing16_50);
    margin-top: 2rem;
}
.boxBody .boxInfo .boxInfoTxt{
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 3rem;
}
.boxBody .boxInfo .boxInfoTxt::before{
    position: absolute;
    content: '';
    margin: auto;
    display: block;
    top: 0;
    left: 0;
    width: 5rem;
    height: 1px;
    background-color: var(--textColor);
}
.boxBody .boxInfo .item{
    display: flex;
}
.boxBody .item .txt{
    margin-top: 0;
    font-size: var(--pcFontSize14);
    line-height: var(--pcLineHeight14_22);
    width: calc(100% - 8rem);
}
.boxBody .item .txt:first-child{
    width: 8rem;
}
.boxBody .item .linkMap{
    margin-top: 1rem;
}
/* boxDetailsTit */
.boxDetails .boxDetailsTit {
    position: relative;
    padding-right: 17rem;
    display: inline-block;
}
.boxDetails .boxDetailsTit:after{
    position: absolute;
    content: '';
    margin: auto;
    display: block;
    top: 0;
    bottom: 0;
    right: 0;
    width: 15rem;
    height: 1px;
    background-color: var(--textColor);
}
.boxDetails .boxDetailsTit.fWhite:after{
    background-color: var(--whiteColor);
}
.boxDetails .boxDetailsTit .tit {
    font-size: var(--pcFontSize20);
    letter-spacing: var(--pcLetterSpacing20_50);
}
/* boxMovie */
.boxDetails .boxMovie {
    margin-top: 8rem;
}
.boxDetails .movie{
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56%;
}
.boxMovie iframe{
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    width: 100%;
    height: 100%;
}
/* boxMap */
.boxDetails .boxMap {
    margin-top: 15rem;
}
.boxDetails .map{
    position: relative;
    margin-top: 5rem;
    width: 100%;
    height: 0;
    padding-top: 66%;
}
.boxMap iframe{
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    width: 100%;
    height: 100%;
}
@media only screen and (max-width:1215px){
    .boxDetails .boxBody {
        margin: 3rem auto 6rem;
    }
    /* boxInfo */
    .boxBody .boxInfo{
        margin-top: 5rem;
        flex-direction: column;
        align-items: center;
    }
    /* boxSlider */
    .boxBody .boxInfo .swiper{
        width: 24.5rem;
        margin: 0 auto;
    }
    .boxBody .boxInfo .img{
        aspect-ratio: 245 / 306;
    }
    /* boxTxt */
    .boxBody .boxInfo .boxTit{
        width: 100%;
        margin-top: 3rem;
        padding-left: 0;
    }
    .boxBody .boxInfo .tit{
        font-size: var(--spFontSize20);
        line-height: var(--spLineHeight20_32);
    }
    .boxBody .boxInfo .txt{
        font-size: var(--spFontSize14);
        line-height: var(--spLineHeight14_26);
        letter-spacing: var(--spLetterSpacing14_0);
        margin-top: 1rem;
    }
    .boxBody .boxInfo .boxInfoTxt{
        gap: 1.5rem;
        margin-top: 2rem;
        padding-top: 3rem;
    }
    .boxBody .boxInfo .boxInfoTxt::before{
        width: 3rem;
    }
    .boxBody .boxInfo .item{
        flex-direction: column;
    }
    .boxBody .item .txt{
        margin-top: 0;
        font-size: var(--spFontSize13);
        line-height: var(--spLineHeight13_20);
        width: 100%;
    }
    .boxBody .item .txt:first-child{
        width: 100%;
    }
    .boxBody .item .linkMap{
        margin-top: 0.5rem;
    }
    .boxDetails .boxCmnShare.is_sticky{
        top: -5rem;
    }
    /* boxDetailsTit */
    .boxDetails .boxDetailsTit {
        padding-right: 5rem;
    }
    .boxDetails .boxDetailsTit:after{
        width: 4rem;
    }
    .boxDetails .boxDetailsTit .tit {
        font-size: var(--spFontSize14);
        letter-spacing: var(--spLetterSpacing14_0);
    }
    /* boxMovie */
    .boxDetails .boxMovie {
        margin-top: 5rem;
    }
    .boxDetails .movie{
        padding-top: 55.945%;
    }
    /* boxMap */
    .boxDetails .boxMap {
        margin-top: 8rem;
    }
    .boxDetails .map{
        margin-top: 2rem;
        padding-top: 86.96%;
    }
}

/*-----------------------------------------------
    boxPattern
-----------------------------------------------*/
.boxPattern{
    background-color: var(--blackColor_light5);
    padding: 15rem 0 20rem;
    margin-top: 15rem;
}
.boxPattern .box{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-top: 5rem;
}
.boxPattern .box + .boxDetailsTit{
    margin-top: 14rem;
}
.boxPattern .box + .box{
    margin-top: 7rem;
}
.boxPattern .box .box{
    width: 46.668%;
    margin-top: 0;
}
.boxPattern .boxImg{
    width: 100%;
    text-align: center;
}
.boxPattern .boxImg img{
    max-width:100%;
    max-height: 73.5rem;
    width:auto;
    height:auto;
}
.boxPattern .boxTit{
    color: var(--whiteColor);
}
.boxPattern .boxImg + .boxTit{
    margin-top: 3.5rem;
}
.boxPattern .boxTit .tit{
    font-size: var(--pcFontSize30);
    line-height: var(--pcLineHeight30_45);
    letter-spacing: var(--pcLetterSpacing30_40);
    font-weight: bold;
}
.boxPattern .boxTit .txt{
    margin-top: 2rem;
    font-size: var(--pcFontSize16);
    line-height: var(--pcLineHeight16_32);
    letter-spacing: var(--pcLetterSpacing16_50);
}
@media only screen and (max-width:1215px){
    .boxPattern{
        padding: 4rem 0 10rem;
        margin-top: 7rem;
    }
    .boxPattern .box{
        margin-top: 3rem;
    }
    .boxPattern .box + .boxDetailsTit{
        margin-top: 7rem;
    }
    .boxPattern .box + .box{
        margin-top: 4.5rem;
    }
    .boxPattern .box .box{
        width: 100%;
    }
    .boxPattern .boxImg img{
        max-height: 30rem;
    }
    .boxPattern .boxImg + .boxTit{
        margin-top: 3.5rem;
    }
    .boxPattern .boxTit .tit{
        font-size: var(--spFontSize15);
        line-height: var(--spLineHeight15_26);
        letter-spacing: var(--spLetterSpacing15_0);
    }
    .boxPattern .boxTit .txt{
        margin-top: 0.5rem;
        font-size: var(--spFontSize14);
        line-height: var(--spLineHeight14_26);
        letter-spacing: var(--spLetterSpacing14_0);
    }
}

/*-----------------------------------------------
    secDetailsPager
-----------------------------------------------*/
.secDetailsPager .btnPrev,
.secDetailsPager .btnNext{
    position: relative;
    display: block;
    height: 100%;
    padding-bottom: 7rem;
}
.secDetailsPager .img{
    aspect-ratio: 590 / 388;
}
.secDetailsPager .boxTit{
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.secDetailsPager .boxCmnListTag{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.secDetailsPager .tit{
    width: 100%;
    font-size: var(--pcFontSize22);
    line-height: var(--pcLineHeight22_38);
    font-weight: bold;
    margin-top: 1rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    overflow: hidden;
    max-height: calc(var(--pcFontSize22) * var(--pcLineHeight22_38) * 2);
}
.secDetailsPager .txtInfo{
    font-size: var(--pcFontSize14);
    line-height: var(--pcLineHeight14_17);
    letter-spacing: var(--pcLetterSpacing14_50);
}
.secDetailsPager .txtCmnTag + .txtInfo{
    margin-left: 1.5rem;
}
.secDetailsPager .boxCmnMore{
    position: absolute;
    bottom: 0;
    right: 0;
}
@media only screen and (max-width:1215px){
    .secDetailsPager .btnPrev,
    .secDetailsPager .btnNext{
        height: auto;
        padding: 4.5rem 0 2.5rem;
        display: flex;
        justify-content: space-between;
    }
    .secDetailsPager .btnNext{
        flex-direction: row-reverse;
    }
    .secDetailsPager .boxImg{
        position: relative;
        width: 8rem;
    }
    .secDetailsPager .boxTit{
        width: calc(100% - 9.5rem);
        margin-top: -0.7rem;
    }
    .secDetailsPager .boxCmnTag{
        order: 2;
        margin-left: 0.5rem;
    }
    .secDetailsPager .itemTag {
        padding: 0 1.9rem 0.1rem;
    }
    .secDetailsPager .tag {
        font-size: var(--spFontSize10);
    }
    .secDetailsPager .boxCmnListTag{
        position: static;
    }
    .secDetailsPager .tit{
        order: 3;
        margin-top: 0;
        font-size: var(--spFontSize13);
        line-height: var(--spLineHeight13_21);
        max-height: calc(var(--spFontSize13) * var(--spLineHeight13_21) * 2);
    }
    .secDetailsPager .txtInfo{
        order: 1;
        font-size: var(--spFontSize12);
        line-height: var(--spLineHeight12_18);
        letter-spacing: var(--spLetterSpacing12_50);
    }
    .secDetailsPager .txtCmnTag{
        order: 4;
        min-width: 8rem;
        padding: 0.6rem 1rem 0.7rem;
        border-radius: 1rem;
        margin-top: 0.5rem;
    }
    .secDetailsPager .txtCmnTag + .txtInfo{
        margin-left: 0;
    }
    .secDetailsPager .boxCmnMore{
        display: none;
    }
}