@charset "utf-8";
#container{
    overflow: visible;
}

/*-----------------------------------------------
    index
-----------------------------------------------*/
/* secList */
.secList{
    padding-top: 6rem;
}
.secList .boxFlexTop{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    border-bottom: 0.1rem dotted var(--borderColor);
    padding-bottom: 4rem;
}
.secList .txtTop{
    font-size: var(--pcFontSize16);
    letter-spacing: var(--pcLetterSpacing16_50);
    flex: 1;
}

/* boxSearch */
.boxSearch{
    position: relative;
}
.boxSearch .btnSearch{
    width: 22rem;
    height: 6rem;
    background: var(--keyColor);
    border-radius: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}
.boxSearch .btnSearch .txtInner{
    font-size: var(--pcFontSize16);
    letter-spacing: var(--pcLetterSpacing16_50);
    color: var(--ColorWhite);
    position: relative;
    padding-left: 2.9rem;
}
.boxSearch .btnSearch .txtInner::before{
    content: '';
    width: 1.8rem;
    height: 1.8rem;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.boxSearch .btnSearch .txtInner::before{
    background: url(../img/common/iconSearch.png) center top / cover;
}
.boxSearch .boxPopupSearch{
    position: absolute;
    top: calc(100% + 1rem);
    right: 0;
    width: 80rem;
    background: var(--ColorWhite);
    border-radius: 1rem;
    box-shadow: 0 0 4rem rgba(0, 0, 0, 0.1);
    padding: 6rem;
    z-index: 100;
    display: none;
}
.boxSearch .boxPopupSearch.isOpen{
    display: block;
}
.boxSearch .boxPopupSearch::after{
    content: '';
    width: 0;
    height: 0;
    border-left: 1.4rem solid transparent;
    border-right: 1.4rem solid transparent;
    border-bottom: 1.1rem solid var(--ColorWhite);
    position: absolute;
    top: -1.1rem;
    right: 9.5rem;
    z-index: 2;
}
.boxSearch .btnClose{
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: var(--ColorWhite);
    border: 0.1rem solid var(--textColor);
    position: absolute;
    top: 2rem;
    right: 2rem;
    cursor: pointer;
}
.boxSearch .btnClose::before,
.boxSearch .btnClose::after{
    content: '';
    width: 0.1rem;
    height: 1.1rem;
    background: var(--textColor);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
.boxSearch .btnClose::after{
    transform: translate(-50%, -50%) rotate(-45deg);
}
.boxSearch .txtSearchTit{
    font-size: var(--pcFontSize20);
    letter-spacing: var(--pcLetterSpacing20_50);
    color: var(--keyColor);
    font-weight: bold;
    margin-bottom: 3rem;
    position: relative;
    padding-left: 2.2rem;
}
.boxSearch .txtSearchTit::before{
    content: '';
    width: 0;
    height: 0;
    border-left: 0.6rem solid transparent;
    border-right: 0.6rem solid transparent;
    border-top: 1rem solid var(--keyColor);
    position: absolute;
    top: 0.6rem;
    left: 0;
}
.boxSearch .boxList{
    margin-bottom: 3rem;
}
.boxSearch .boxList:last-of-type{
    margin-bottom: 0;
}
.boxSearch .txtListTit{
    font-size: var(--pcFontSize16);
    letter-spacing: var(--pcLetterSpacing16_50);
    font-weight: bold;
    margin-bottom: 1.6rem;
    position: relative;
    padding-left: 1.5rem;
}
.boxSearch .txtListTit::before{
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--keyColor);
    position: absolute;
    top: 0.6rem;
    left: 0;
}
.boxSearch .list{
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.boxSearch .list .item{
    flex: 0 0 auto;
}
.boxSearch .btnFilter{
    display: inline-block;
    padding: 1.8rem 2rem;
    border-radius: 0.3rem;
    background: var(--cmnTitBg);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.boxSearch .btnFilter .inputFilter{
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.boxSearch .btnFilter .txtFilter{
    display: block;
    font-size: var(--pcFontSize14);
    letter-spacing: var(--pcLetterSpacing14_50);
    color: var(--textColor);
}
.boxSearch .btnFilter.isActive{
    background: var(--keyColor);
}
.boxSearch .btnFilter.isActive .txtFilter{
    color: var(--ColorWhite);
}
.boxSearch .boxBtnAction{
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}
.boxSearch .btnSearchAction{
    flex: 1;
    height: 7.5rem;
    border: 0.1rem solid var(--textColor);
    border-radius: 3.75rem;
    background: var(--ColorWhite);
    font-size: var(--pcFontSize16);
    letter-spacing: var(--pcLetterSpacing16_50);
    font-weight: bold;
    color: var(--textColor);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-family: inherit;
}
.boxSearch .btnSearchAction::after{
    content: '';
    width: 1.5rem;
    height: 0.9rem;
    position: absolute;
    top: 50%;
    right: 4rem;
    transform: translateY(-50%);
}
.boxSearch .btnSearchAction::after{
    background: url(../img/common/iconArrow.png) center top / cover;
}
.boxSearch .btnReset{
    width: 18rem;
    height: 7.5rem;
    border: none;
    border-radius: 3.75rem;
    background: var(--borderColorGray3);
    font-size: var(--pcFontSize16);
    letter-spacing: var(--pcLetterSpacing16_50);
    font-weight: bold;
    color: var(--textColor);
    cursor: pointer;
    font-family: inherit;
}
.secList .txtTotal{
    font-size: var(--pcFontSize16);
    letter-spacing: var(--pcLetterSpacing16_50);
    font-weight: bold;
    margin-top: 4rem;
}
.secList .txtTotal .txtNum{
    font-size: var(--pcFontSize40);
    letter-spacing: var(--pcLetterSpacing40_50);
    padding-right: 0.6rem;
}
.secList .boxListFilter .list{
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2rem;
}
.secList .boxListFilter .btnFilter{
    padding: 1.8rem 2rem;
    border-radius: 0.3rem;
    background: var(--cmnTitBg);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.secList .boxListFilter .btnFilter .txtFilter{
    display: block;
    font-size: var(--pcFontSize14);
    letter-spacing: var(--pcLetterSpacing14_50);
    color: var(--textColor);
}
@media only screen and (max-width:1215px){
    .secList{
        padding-top: 3rem;
    }
    .secList .boxFlexTop{
        flex-direction: column;
        gap: 2rem;
        padding-bottom: 3rem;
    }
    .secList .txtTop{
        font-size: var(--spFontSize12);
        line-height: var(--spLineHeight12_22);
        letter-spacing: var(--spLetterSpacing0);
    }
    .boxSearch{
        width: 100%;
    }
    .boxSearch .btnSearch{
        width: 100%;
        height: 4.7rem;
        border-radius: 2.35rem;
        position: relative;
    }
    .boxSearch .btnSearch::before{
        content: '';
        width: 1.8rem;
        height: 1.8rem;
        position: absolute;
        top: 50%;
        left: 3rem;
        transform: translateY(-50%);
    }
    .boxSearch .btnSearch::before{
        background: url(../img/common/iconSearch.png) center top / cover;
    }
    .boxSearch .btnSearch .txtInner{
        font-size: var(--spFontSize14);
        letter-spacing: var(--spLetterSpacing0);
        padding-left: 0;
    }
    .boxSearch .btnSearch .txtInner::before{
        display: none;
    }
    .boxSearch .boxPopupSearch{
        width: calc(100vw - 3rem);
        max-width: 100%;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        padding: 2rem 2rem 2rem;
        position: relative;
        margin-top: 2rem;
    }
    .boxSearch .boxPopupSearch::before{
        content: '';
        width: 0;
        height: 0;
        border-left: 1.5rem solid transparent;
        border-right: 1.5rem solid transparent;
        border-bottom: 1.2rem solid var(--borderColor);
        position: absolute;
        top: -1.2rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
        opacity: 0.4;
    }
    .boxSearch .boxPopupSearch::after{
        content: '';
        width: 0;
        height: 0;
        border-left: 1.4rem solid transparent;
        border-right: 1.4rem solid transparent;
        border-bottom: 1.1rem solid var(--ColorWhite);
        position: absolute;
        top: -1.1rem;
        right: unset;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
    }
    .boxSearch .btnClose{
        display: none;
    }
    .boxSearch .txtSearchTit{
        font-size: var(--spFontSize14);
        letter-spacing: var(--spLetterSpacing0);
        margin-bottom: 2rem;
        padding-left: 1.3rem;
    }
    .boxSearch .txtSearchTit::before{
        content: '';
        width: 0;
        height: 0;
        border-left: 0.6rem solid transparent;
        border-right: 0.6rem solid transparent;
        border-top: 1rem solid var(--keyColor);
        position: absolute;
        top: 0.6rem;
        left: 0;
    }
    .boxSearch .boxList{
        margin-bottom: 1.5rem;
    }
    .boxSearch .txtListTit{
        font-size: var(--spFontSize12);
        letter-spacing: var(--spLetterSpacing0);
        margin-bottom: 1rem;
    }
    .boxSearch .list{
        gap: 0.8rem;
    }
    .boxSearch .btnFilter{
        height: 3.4rem;
        padding: 0 1.5rem;
    }
    .boxSearch .btnFilter .txtFilter{
        font-size: var(--spFontSize12);
        letter-spacing: var(--spLetterSpacing0);
    }
    .boxSearch .boxBtnAction{
        flex-direction: column;
        gap: 1.3rem;
        margin-top: 2rem;
    }
    .boxSearch .btnSearchAction{
        flex: none;
        width: 100%;
        height: 5.5rem;
        font-size: var(--spFontSize14);
        letter-spacing: var(--spLetterSpacing0);
        padding-right: 2.75rem;
    }
    .boxSearch .btnSearchAction::after{
        right: 2rem;
    }
    .boxSearch .btnReset{
        width: 100%;
        height: 3.5rem;
        border-radius: 1.75rem;
        font-size: var(--spFontSize12);
        letter-spacing: var(--spLetterSpacing0);
    }
    .secList .txtTotal{
        font-size: var(--spFontSize14);
        letter-spacing: var(--spLetterSpacing0);
        margin-top: 3rem;
    }
    .secList .txtTotal .txtNum{
        font-size: var(--spFontSize30);
        letter-spacing: var(--spLetterSpacing30_50);
        padding-right: 0.5rem;
    }
    .secList .boxListFilter .list{
        gap: 0.8rem;
        margin-top: 1.5rem;
    }
    .secList .boxListFilter .btnFilter{
        height: 3.4rem;
        padding: 0 1.5rem;
    }
    .secList .boxListFilter .btnFilter .txtFilter{
        font-size: var(--spFontSize12);
        letter-spacing: var(--spLetterSpacing0);
    }
}

/* boxWorksList */
.secList .boxWorksList{
    display: flex;
    flex-wrap: wrap;
    gap: 6rem;
    margin-top: 5rem;
}
.secList .boxWorksList .itemWorks{
    width: calc((100% - 12rem) / 3);
    position: relative;
}
.secList .boxWorksList .boxImg{
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
}
.secList .boxWorksList .boxInfo{
    padding: 2.5rem 0 7.9rem;
}
.secList .boxWorksList .tit{
    font-size: var(--pcFontSize22);
    line-height: var(--pcLineHeight22_34);
    letter-spacing: var(--pcLetterSpacing22_50);
    font-weight: bold;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    max-height: 6.8rem;
    margin-bottom: 1.8rem;
}
.secList .boxWorksList .tagList{
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1rem;
    margin-bottom: 2.5rem;
    position: relative;
    max-height: calc(var(--pcLineHeight16_30) * var(--pcFontSize16) * 2 + 1rem);
    overflow: hidden;
}
.secList .boxWorksList .tagList::after{
    content: '...';
    position: absolute;
    bottom: 0.6rem;
    right: 0;
    background: linear-gradient(to right, transparent, var(--ColorWhite) 30%);
    padding-left: 2rem;
    font-size: var(--pcFontSize16);
    line-height: var(--pcLineHeight16_30);
    letter-spacing: var(--pcLetterSpacing16_50);
    display: none;
}
.secList .boxWorksList .tagList.isOverflow::after{
    display: block;
}
.secList .boxWorksList .itemTag{
    font-size: var(--pcFontSize16);
    line-height: var(--pcLineHeight16_30);
    letter-spacing: var(--pcLetterSpacing16_50);
}
.secList .boxWorksList .txtPlace{
    font-size: var(--pcFontSize16);
    letter-spacing: var(--pcLetterSpacing16_50);
    color: var(--categoryTextColor);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    max-height: 1.6rem;
}
.secList .boxWorksList .boxLinkArrow{
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: absolute;
    bottom: 0rem;
    right: 0;
}
.secList .boxWorksList .txtArrow{
    font-size: var(--pcFontSize16);
    font-weight: bold;
}
.secList .boxWorksList .imgArrow{
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    background: var(--ColorWhite);
    border: 0.1rem solid var(--textColor);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease-out;
}
.secList .itemWorks:hover .imgArrow{
    background: var(--textColor);
}
.secList .itemWorks:hover .imgArrow img{
    filter: brightness(0) invert(1);
}
@media only screen and (max-width:1215px){
    .secList .boxWorksList{
        gap: 4.75rem 0.1rem;
        margin-top: 3rem;
    }
    .secList .boxWorksList .itemWorks{
        width: calc((100% - 0.1rem) / 2);
    }
    .secList .boxWorksList .boxInfo{
        padding: 1.6rem 2rem 5rem;
    }
    .secList .boxWorksList .tit{
        font-size: var(--spFontSize16);
        line-height: var(--spLineHeight16_24);
        letter-spacing: var(--spLetterSpacing0);
        -webkit-line-clamp: 3;
        max-height: 7.2rem;
        margin-bottom: 0.7rem;
    }
    .secList .boxWorksList .tagList{
        display: flex;
        flex-wrap: wrap;
        gap: 1rem 0.6rem;
        margin-bottom: 1rem;
        position: relative;
        max-height: calc(var(--spLineHeight14_22) * var(--spFontSize14) * 2 + 1rem);
        overflow: hidden;
    }
    .secList .boxWorksList .tagList::after{
        content: '...';
        position: absolute;
        bottom: 0;
        right: 0;
        background: linear-gradient(to right, transparent, var(--ColorWhite) 30%);
        padding-left: 2rem;
        font-size: var(--spFontSize14);
        line-height: var(--spLineHeight14_22);
        letter-spacing: var(--spLetterSpacing0);
        display: none;
    }
    .secList .boxWorksList .tagList.isOverflow::after{
        display: block;
    }
    .secList .boxWorksList .itemTag{
        font-size: var(--spFontSize14);
        line-height: var(--spLineHeight14_22);
        letter-spacing: var(--spLetterSpacing0);
    }
    .secList .boxWorksList .txtPlace{
        font-size: var(--spFontSize12);
        letter-spacing: var(--spLetterSpacing0);
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        overflow: hidden;
        max-height: 1.2rem;
    }
    .secList .boxWorksList .boxLinkArrow{
        gap: 0.9rem;
        bottom: -1.7rem;
        right: 2rem;
    }
    .secList .boxWorksList .txtArrow{
        font-size: var(--spFontSize14);
        position: relative;
    }
    .secList .boxWorksList .itemWorks::before{
        content: '';
        width: calc(100% - 16.4rem);
        height: 0.1rem;
        position: absolute;
        bottom: 0;
        left: 2rem;
        background: var(--borderColor);
    }
    .secList .boxWorksList .imgArrow{
        width: 3.5rem;
        height: 3.5rem;
    }
    .secList .boxWorksList .imgArrow img{
        width: 1.3rem;
    }
}

/*-----------------------------------------------
    details
-----------------------------------------------*/
/* secDetailsTop */
.secDetailsTop{
    margin-top: 10rem;
    text-align: center;
}
.secDetailsTop .txtTit{
    font-size: var(--pcFontSize40);
    line-height: var(--pcLineHeight40_60);
    letter-spacing: var(--pcLetterSpacing40_50);
    font-weight: bold;
    margin-bottom: 2.6rem;
}
.secDetailsTop .txtPlace{
    font-size: var(--pcFontSize16);
    line-height: var(--pcLineHeight16_22);
    letter-spacing: var(--pcLetterSpacing16_50);
    font-weight: bold;
    margin-bottom: 3.8rem;
}
.secDetailsTop .boxTag{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}
.secDetailsTop .itemTag{
    height: 5rem;
    padding: 1.8rem;
    background: var(--cmnTitBg);
    border-radius: 0.3rem;
    font-size: var(--pcFontSize16);
    letter-spacing: var(--pcLetterSpacing16_50);
    display: flex;
    align-items: center;
    justify-content: center;
}
.secDetailsTop .boxTab{
    display: flex;
    margin-top: 6rem;
    justify-content: center;
}
.secDetailsTop .boxTab .btnTab{
    width: 69rem;
    height: 11rem;
    border-radius: 1rem 0 0 0;
    border: none;
    background: var(--borderColorGray3);
    font-size: var(--pcFontSize22);
    letter-spacing: var(--pcLetterSpacing22_100);
    font-weight: bold;
    color: var(--textColor);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
}
.secDetailsTop .boxTab .btnTab2{
    border-radius: 0 1rem 0 0;
}
.secDetailsTop .boxTab .btnTab.isActive{
    background: var(--keyColor);
    color: var(--ColorWhite);
}
.secDetailsTop .boxContent{
    border-top: 0.5rem solid var(--keyColor);
    background: var(--bgSlider);
    padding: 5rem 0 8rem;
}
.secDetailsTop .content01,
.secDetailsTop .content02{
    display: none;
}
.secDetailsTop .content01.isActive,
.secDetailsTop .content02.isActive{
    display: block;
}

@media only screen and (max-width:1215px){
    .secDetailsTop{
        margin-top: 3rem;
        text-align: left;
    }
    .secDetailsTop .txtTit{
        font-size: var(--spFontSize18);
        line-height: var(--spLineHeight18_28);
        letter-spacing: var(--spLetterSpacing0);
        margin-bottom: 0.6rem;
    }
    .secDetailsTop .txtPlace{
        font-size: var(--spFontSize14);
        line-height: var(--spLineHeight14_24);
        letter-spacing: var(--spLetterSpacing0);
        margin-bottom: 1.3rem;
    }
    .secDetailsTop .boxTag{
        justify-content: flex-start;
        gap: 0.2rem;
    }
    .secDetailsTop .itemTag{
        height: 3.1rem;
        padding: 1rem;
        border-radius: 0.2rem;
        font-size: var(--spFontSize12);
        letter-spacing: var(--spLetterSpacing0);
    }
    .secDetailsTop .boxTab{
        gap: 0.1rem;
        margin-top: 3rem;
    }
    .secDetailsTop .boxTab .btnTab{
        width: calc((100% - 0.1rem) / 2);
        height: 6rem;
        border-radius: 0;
        flex: 1;
        font-size: var(--spFontSize14);
        letter-spacing: var(--spLetterSpacing0);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .secDetailsTop .boxTab .btnTab2{
        border-radius: 0;
    }
    .secDetailsTop .boxContent{
        border-top: 0.2rem solid var(--keyColor);
        padding: 0 0 2.5rem;
    }
}

/* secHeroSlider */
.secHeroSlider{
    overflow: hidden;
}
.secHeroSlider .boxSlider{
    position: relative;
}
.secHeroSlider .swiper{
    width: 108rem;
    overflow: visible;
}
.secHeroSlider .swiper-button-prev,
.secHeroSlider .swiper-button-next{
    width: 6rem;
    height: 6rem;
    margin-top: 0;
    top: calc(50% - 3rem);
    border-radius: 50%;
    cursor: pointer;
}
.secHeroSlider .swiper-button-prev{
    left: calc(50% - 57.5rem);
    transform: rotate(180deg);
}
.secHeroSlider .swiper-button-next{
    right: calc(50% - 57.5rem);
}
.secHeroSlider .swiper-button-prev::after,
.secHeroSlider .swiper-button-next::after{
    display: none;
}
.secHeroSlider .swiper-button-prev.lazyloaded{
    background: url(../img/common/iconArrow.png) center center / 17px auto no-repeat var(--ColorWhite);
}
.secHeroSlider .swiper-button-next.lazyloaded{
    background: url(../img/common/iconArrow.png) center center / 17px auto no-repeat var(--ColorWhite);
}
.secHeroSlider .imgSlider{
    display: block;
    height: 0;
    padding-top: 59.26%;
}
.secHeroSlider .swiper-pagination{
    position: static;
	padding-top: 3.5rem;
}
.secHeroSlider .swiper-pagination-bullet{
    background: var(--ColorWhite);
    margin: 0.5rem !important;
    opacity: 1;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
}
.secHeroSlider .swiper-pagination-bullet-active{
    background: var(--textColor);
}
@media only screen and (max-width:1215px){
    .secHeroSlider{
        margin-top: 2rem;
    }
    .secHeroSlider .swiper{
        width: 100%;
    }
    .secHeroSlider .swiper-button-prev,
    .secHeroSlider .swiper-button-next{
        width: 3rem;
        height: 3rem;
        top: unset;
        bottom: -4rem;
    }
    .secHeroSlider .swiper-button-prev{
        left: 1.5rem;
    }
    .secHeroSlider .swiper-button-next{
        right: 1.5rem;
    }
    .secHeroSlider .swiper-button-prev.lazyloaded{
        background: url(../img/common/iconArrowWhite.png) center center / 17px auto no-repeat var(--bgSlider);
    }
    .secHeroSlider .swiper-button-next.lazyloaded{
        background: url(../img/common/iconArrowWhite.png) center center / 17px auto no-repeat var(--bgSlider);
    }
    .secHeroSlider .swiper-pagination{
        padding-top: 1.5rem;
    }
}

/* secAbout */
.secAbout{
    margin-top: 7.2rem;
}
.secAbout .titAbout{
    font-size: var(--pcFontSize26);
    line-height: var(--pcLineHeight26_42);
    letter-spacing: var(--pcLetterSpacing26_50);
    font-weight: bold;
    margin-bottom: 2.3rem;
}
.secAbout .txtAbout{
    font-size: var(--pcFontSize16);
    line-height: var(--pcLineHeight16_34);
    letter-spacing: var(--pcLetterSpacing16_50);
    margin-bottom: 4.1rem;
}
.secAbout .boxFlex{
    display: flex;
    gap: 3rem;
}
.secAbout .boxList{
    width: calc(100% - 40rem - 3rem);
    border: 0.1rem solid var(--textColor);
    padding: 5rem;
    display: flex;
    flex-direction: column;
}
.secAbout .boxList .item{
    display: flex;
}
.secAbout .boxList .item:last-child{
    border-bottom: none;
}
.secAbout .boxList .itemLabel{
    width: 15rem;
    font-size: var(--pcFontSize16);
    line-height: var(--pcLineHeight16_34);
    letter-spacing: var(--pcLetterSpacing16_50);
    font-weight: bold;
    position: relative;
    text-wrap: nowrap;
}
.secAbout .boxList .itemLabel::after{
    content: '：';
    font-size: var(--pcFontSize16);
    position: absolute;
    right: 0;
}
.secAbout .boxList .itemValue{
    width: calc(100% - 15rem);
    font-size: var(--pcFontSize16);
    line-height: var(--pcLineHeight16_34);
    letter-spacing: var(--pcLetterSpacing16_50);
    margin-left: 1.3rem;
}
.secAbout .boxRight{
    width: 40rem;
    padding: 6rem 4rem;
    background: var(--cmnTitBg);
    text-align: center;
}
.secAbout .boxFlex:not(:has(.boxList)) {
    justify-content: center;
}
.secAbout .txtRightTit{
    font-size: var(--pcFontSize20);
    color: var(--keyColor);
    font-weight: bold;
    position: relative;
    display: table;
    margin: 0 auto 1.7rem;
}
.secAbout .txtRightTit::after,
.secAbout .txtRightTit::before{
    content: '';
    width: 1.1rem;
    height: 2.9rem;
    position: absolute;
    top: 0.5rem;
    left: -2.6rem;
}
.secAbout .txtRightTit::before{
    left: unset;
    right: -2.6rem;
}
.secAbout .txtRightTit.lazyloaded::after{
    background: url(../img/common/imgTxtDecorationLeft.png) center top / cover;
}
.secAbout .txtRightTit.lazyloaded::before{
    background: url(../img/common/imgTxtDecorationRight.png) center top / cover;
}
.secAbout .txtRightTit .inner{
    position: relative;
    z-index: 0;
}
.secAbout .txtRightTit .inner::after{
    content: '';
    width: 100%;
    height: 0.8rem;
    background: var(--ColorYellow);
    position: absolute;
    bottom: -0.1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}
.secAbout .txtRightTxt{
    font-size: var(--pcFontSize14);
    line-height: var(--pcLineHeight14_24);
    margin-bottom: 1.9rem;
}
.secAbout .boxBtnContact{
    position: relative;
}
.secAbout .btnContact{
    width: 100%;
    height: 7rem;
    background: var(--keyColor);
    border-radius: 3.5rem;
    font-size: var(--pcFontSize16);
    font-weight: bold;
    color: var(--ColorWhite);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.secAbout .btnContact::after{
    content: '';
    width: 1.5rem;
    height: 0.9rem;
    position: absolute;
    top: 50%;
    right: 3rem;
    transform: translateY(-50%);
}
.secAbout .btnContact.lazyloaded::after{
    background: url(../img/common/iconArrowWhite.png) center top / cover;
}
.secAbout .iconFree{
    position: absolute;
    top: -1.5rem;
    left: 2.4rem;
}
@media only screen and (max-width:1215px){
    .secAbout{
        margin-top: 2.5rem;
    }
    .secAbout .titAbout{
        font-size: var(--spFontSize16);
        line-height: var(--spLineHeight16_26);
        letter-spacing: var(--spLetterSpacing0);
        margin-bottom: 1rem;
    }
    .secAbout .txtAbout{
        font-size: var(--spFontSize14);
        line-height: var(--spLineHeight14_24);
        letter-spacing: var(--spLetterSpacing0);
        margin-bottom: 2.4rem;
    }
    .secAbout .boxFlex{
        flex-direction: column;
        gap: 3rem;
    }
    .secAbout .boxList{
        width: 100%;
        border: 0.1rem solid var(--textColor);
        border-right: 0;
        border-left: 0;
        padding: 2rem 0;
    }
    .secAbout .boxList .itemLabel{
        width: 11.5rem;
        font-size: var(--spFontSize14);
        line-height: var(--spLineHeight14_22);
        letter-spacing: var(--spLetterSpacing0);
    }
    .secAbout .boxList .itemLabel::after{
        font-size: var(--spFontSize14);
        top: 0;
        transform: unset;
    }
    .secAbout .boxList .itemValue{
        width: calc(100% - 12rem);
        font-size: var(--spFontSize14);
        line-height: var(--spLineHeight14_22);
        letter-spacing: var(--spLetterSpacing0);
        margin-left: 0.5rem;
    }
    .secAbout .boxRight{
        width: 100%;
        padding: 3rem 2rem;
    }
    .secAbout .txtRightTit{
        font-size: var(--spFontSize16);
        margin: 0 auto 1.6rem;
    }
    .secAbout .txtRightTit::after,
    .secAbout .txtRightTit::before{
        width: 1rem;
        height: 2rem;
        top: 0.6rem;
        left: -2rem;
    }
    .secAbout .txtRightTit::before{
        left: unset;
        right: -2rem;
    }
    .secAbout .txtRightTit .inner::after{
        height: 0.6rem;
        bottom: -0.2rem;
    }
    .secAbout .txtRightTxt{
        font-size: var(--spFontSize12);
        line-height: var(--spLineHeight12_20);
        margin-bottom: 1.6rem;
    }
    .secAbout .btnContact{
        width: 100%;
        height: 5.5rem;
        border-radius: 2.75rem;
        font-size: var(--spFontSize14);
        letter-spacing: var(--spLetterSpacing0);
    }
    .secAbout .btnContact::after{
        width: 1.3rem;
        height: 0.7rem;
        right: 2rem;
    }
    .secAbout .iconFree{
        width: 4.5rem;
        height: 4.5rem;
        top: -2rem;
        left: 2.2rem;
    }
}

/* secEditor */
.secEditor{
    margin-top: 8rem;
    padding-bottom: 8rem;
    border-bottom: 0.1rem dotted var(--borderColor);
}
@media only screen and (max-width:1215px){
    .secEditor{
        margin-top: 5rem;
        padding-bottom: 5rem;
    }
}

/* secPlan */
.secPlan{
    margin-top: 8rem;
}
.secPlan .boxList{
    display: flex;
    gap: 6rem;
    margin-top: 5rem;
}
.secPlan .item{
    width: calc((100% - 6rem) / 2);
    border: 0.1rem solid var(--borderColorGray3);
    border-radius: 1rem 1rem 0 0;
}
.secPlan .item.itemAfter{
    border: 0.1rem solid var(--keyColor);
}
.secPlan .boxList .item:only-child{
    width: 100%;
}
.secPlan .item .txtPlanTit{
    height: 11rem;
    border-radius: 1rem 1rem 0 0;
    background: var(--borderColorGray3);
    font-size: var(--pcFontSize22);
    letter-spacing: var(--pcLetterSpacing22_100);
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
}
.secPlan .item.itemAfter .txtPlanTit{
    background: var(--keyColor);
    color: var(--ColorWhite);
}
.secPlan .boxLightLink{
    display: block;
    width: 100%;
    padding: 4.5rem 4rem;
}
.secPlan .item .imgBox{
    width: 58rem;
    height: 41.2rem;
    margin: 0 auto;
}
.secPlan .item .btnLightbox{
    width: 22rem;
    height: 6rem;
    border: 0.1rem solid var(--textColor);
    border-radius: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem auto 0;
}
.secPlan .item .txtInner{
    font-size: var(--pcFontSize14);
    letter-spacing: var(--pcLetterSpacing14_50);
    color: var(--textColor);
    text-decoration: none;
    position: relative;
    padding-left: 2.9rem;
}
.secPlan .item .txtInner::after{
    content: '';
    width: 1.8rem;
    height: 1.8rem;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.secPlan .item .txtInner.lazyloaded::after{
    background: url(../img/common/iconZoom.png) center top / cover;
}
.secPlan .boxPlanTab{
    display: none;
}
.secPlan .txtTitPlan{
    font-size: var(--pcFontSize26);
    line-height: var(--pcLineHeight26_42);
    letter-spacing: var(--pcLetterSpacing26_50);
    font-weight: bold;
    margin-top: 4.2rem;
}
.secPlan .txtAboutPlan{
    font-size: var(--pcFontSize16);
    line-height: var(--pcLineHeight16_34);
    letter-spacing: var(--pcLetterSpacing16_50);
    margin-top: 2.3rem;
}
@media only screen and (max-width:1215px){
    .secPlan{
        margin-top: 3rem;
    }
    .secPlan .boxPlanTab{
        display: flex;
        gap: 0.1rem;
        margin-top: 2.4rem;
    }
    .secPlan .btnPlanTab{
        width: calc((100% - 0.1rem) / 2);
        height: 6rem;
        background: var(--borderColorGray3);
        border-radius: 0;
        font-size: var(--spFontSize14);
        letter-spacing: var(--spLetterSpacing0);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background 0.2s ease-out, color 0.2s ease-out;
    }
    .secPlan .btnPlanTab.isActive{
        background: var(--keyColor);
        color: var(--ColorWhite);
    }
    .secPlan .boxList{
        display: block;
        margin-top: 0;
        position: relative;
        border-top: 0.2rem solid var(--keyColor);
    }
    .secPlan .item{
        width: 100%;
        border-radius: 0;
        display: none;
    }
    .secPlan .item.itemAfter {
        border-right: none;
        border-left: none;
    }
    .secPlan .item[data-plan-content="after"]{
        display: block;
    }
    .secPlan .boxList[data-plan-active="before"] .item[data-plan-content="after"]{
        display: none;
    }
    .secPlan .boxList[data-plan-active="before"] .item[data-plan-content="before"]{
        display: block;
    }
    .secPlan .boxList .item:only-child{
        width: 100%;
    }
    .secPlan .item .txtPlanTit{
        height: 6rem;
        border-radius: 0;
        font-size: var(--spFontSize14);
        letter-spacing: var(--spLetterSpacing0);
        display: none;
    }
    .secPlan .boxLightLink{
        padding: 2rem 2rem 3rem;
    }
    .secPlan .item .imgBox{
        width: 100%;
        height: 23.3rem;
        margin: 0 auto;
    }
    .secPlan .item .btnLightbox{
        width: 18.5rem;
        height: 5rem;
        border-radius: 2.5rem;
        margin: 2rem auto 0;
    }
    .secPlan .item .txtInner{
        font-size: var(--spFontSize12);
        letter-spacing: var(--spLetterSpacing0);
        padding-left: 2.1rem;
    }
    .secPlan .item .txtInner::after{
        width: 1.4rem;
        height: 1.4rem;
    }
    .secPlan .txtTitPlan{
        font-size: var(--spFontSize16);
        line-height: var(--spLineHeight16_26);
        letter-spacing: var(--spLetterSpacing0);
        margin-top: 2.5rem;
    }
    .secPlan .txtAboutPlan{
        font-size: var(--spFontSize14);
        line-height: var(--spLineHeight14_24);
        letter-spacing: var(--spLetterSpacing0);
        margin-top: 1rem;
    }
}

/* secBnr */
.secBnr{
    margin-top: 15rem;
}
@media only screen and (max-width:1215px){
    .secBnr{
        margin-top: 4.5rem;
    }
}

/* secDetailsPager */
.secDetailsPager{
    position: relative;
    border-top: 1px solid var(--borderColor);
    border-bottom: 1px solid var(--borderColor);
    margin-top: 15rem;
}
.secDetailsPager .boxBtnPager{
    display: flex;
}
.secDetailsPager .boxBtnPrev,
.secDetailsPager .boxBtnNext{
    width: 65.5rem;
    padding: 4rem 0;
}
.secDetailsPager .btnPrev,
.secDetailsPager .btnNext{
    display: flex;
    color: inherit;
    text-decoration: none;
}
.secDetailsPager .boxBtnNext{
    margin: 0 0 0 auto;
}
.secDetailsPager .btnNext{
    flex-direction: row-reverse;
}
.secDetailsPager .img{
    width: 23rem;
    height: 23rem;
}
.secDetailsPager .boxTxt{
    width: 39.5rem;
    margin: 0 0 0 3rem;
    padding-top: 4.5rem;
    position: relative;
}
.secDetailsPager .btnNext .boxTxt{
    margin: 0 3rem 0 0;
}
.secDetailsPager .boxTxt .tit{
    font-size: var(--pcFontSize20);
    line-height: var(--pcLineHeight20_28);
    font-weight: bold;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    max-height: 5.6rem;
    margin-bottom: 1.7rem;
}
.secDetailsPager .boxTxt .tagList{
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.7rem;
    position: relative;
    max-height: calc(var(--pcLineHeight14_22) * var(--pcFontSize14) + 0.5rem);
    overflow: hidden;
}
.secDetailsPager .boxTxt .tagList::after{
    content: '...';
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(to right, transparent, var(--ColorWhite) 30%);
    padding-left: 2rem;
    font-size: var(--pcFontSize14);
    line-height: var(--pcLineHeight14_22);
    letter-spacing: var(--pcLetterSpacing14_50);
    display: none;
}
.secDetailsPager .boxTxt .tagList.isOverflow::after{
    display: block;
}
.secDetailsPager .boxTxt .tagList .itemTag{
    font-size: var(--pcFontSize14);
    line-height: var(--pcLineHeight14_22);
    letter-spacing: var(--pcLetterSpacing14_50);
}
.secDetailsPager .boxTxt .itemTag{
    font-size: var(--pcFontSize14);
    letter-spacing: var(--pcLetterSpacing14_50);
}
.secDetailsPager .boxTxt .txtPlace{
    font-size: var(--pcFontSize14);
    letter-spacing: var(--pcLetterSpacing14_50);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
.secDetailsPager .boxLinkArrow{
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: absolute;
    bottom: 0;
    left: 0;
}
.secDetailsPager .boxBtnNext .boxLinkArrow{
    left: unset;
    right: 0;
}
.secDetailsPager .boxLinkArrow .imgArrow{
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    background: var(--ColorWhite);
    border: 0.1rem solid var(--textColor);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease-out;
}
.secDetailsPager .btnPrev .imgArrow{
    transform: rotate(180deg);
}
.secDetailsPager .btnNext:hover .imgArrow,
.secDetailsPager .btnPrev:hover .imgArrow{
    background: var(--textColor);
}
.secDetailsPager .btnNext:hover .imgArrow img,
.secDetailsPager .btnPrev:hover .imgArrow img{
    filter: brightness(0) invert(1);
}
.secDetailsPager .boxLinkArrow .txtArrow{
    font-size: var(--pcFontSize16);
    font-weight: bold;
}
.cmnBtnBack .cmnBtnBack {
    margin: 8rem auto 0;
}
@media only screen and (max-width:1215px){
    .secDetailsPager{
        margin-top: 5rem;
    }
    .secDetailsPager .boxBtnPager{
        flex-direction: column;
        padding-bottom: 3rem;
    }
    .secDetailsPager .boxBtnPrev,
    .secDetailsPager .boxBtnNext{
        width: 100%;
        padding: 0;
        position: relative;
    }
    .secDetailsPager .btnPrev, .secDetailsPager .btnNext {
        align-items: center;
        position: relative;
        padding: 3rem 0 4.5rem;
    }
    .secDetailsPager .btnNext {
        padding: 2rem 0 4.5rem;
    }
    .secDetailsPager .boxBtnPrev::after,
    .secDetailsPager .boxBtnNext::after{
        content: '';
        width: calc(100% - 10rem - 1rem);
        height: 0.1rem;
        background: var(--borderColor);
        position: absolute;
        bottom: 1.75rem;
        right: 0;
    }
    .secDetailsPager .boxBtnNext::after{
        right: unset;
        left: 0;
    }
    .secDetailsPager .img{
        width: 10.5rem;
        height: 10.5rem;
    }
    .secDetailsPager .boxTxt{
        width: calc(100% - 10.5rem - 1.5rem);
        margin: 0 0 0 1.5rem;
        padding-top: 0;
        position: unset;
    }
    .secDetailsPager .btnNext .boxTxt{
        margin: 0 1.5rem 0 0;
    }
    .secDetailsPager .boxTxt .tit{
        font-size: var(--spFontSize14);
        line-height: var(--spLineHeight14_20);
        max-height: 4rem;
        margin-bottom: 0.8rem;
    }
    .secDetailsPager .boxTxt .tagList{
        gap: 0.4rem;
        margin-bottom: 0.6rem;
        max-height: calc(var(--spLineHeight12_18) * var(--spFontSize12) + 0.5rem);
        overflow: hidden;
    }
    .secDetailsPager .boxTxt .tagList::after{
        padding-left: 0.5rem;
        font-size: var(--spFontSize12);
        line-height: var(--spLineHeight12_18);
        letter-spacing: var(--spLetterSpacing0);
    }
    .secDetailsPager .boxTxt .tagList .itemTag{
        font-size: var(--spFontSize12);
        line-height: var(--spLineHeight12_18);
        letter-spacing: var(--spLetterSpacing0);
    }
    .secDetailsPager .boxTxt .itemTag{
        font-size: var(--spFontSize12);
        letter-spacing: var(--spLetterSpacing0);
    }
    .secDetailsPager .boxTxt .txtPlace{
        font-size: var(--spFontSize12);
        line-height: var(--spLineHeight12_18);
        letter-spacing: var(--spLetterSpacing0);
        -webkit-line-clamp: 1;
        max-height: 1.8rem;
    }
    .secDetailsPager .boxLinkArrow{
        gap: 1rem;
        bottom: 0;
    }
    .secDetailsPager .boxLinkArrow .imgArrow{
        width: 3.5rem;
        height: 3.5rem;
    }
    .secDetailsPager .btnNext .imgArrow img,
    .secDetailsPager .btnPrev .imgArrow img{
        width: 1.3rem;
        height: 0.7rem;
    }
    .secDetailsPager .boxLinkArrow .txtArrow{
        font-size: var(--spFontSize14);
    }
    .cmnBtnBack .cmnBtnBack {
        margin: 3rem auto 0;
    }
}