@charset "utf-8";

/*-----------------------------------------------
    secFlow
-----------------------------------------------*/
.secFlow .boxListFrow{
    display: flex;
    flex-wrap: wrap;
    gap: 3.5rem;
}
.secFlow .boxListFrow .item{
    position: relative;
    width: calc((100% - 6.999rem) / 3);
}
.secFlow .boxListFrow .item:nth-child(2)::before{
    position: absolute;
    content: '';
    margin: auto;
    display: block;
    top: 2.5rem;
    left: -30%;
    right: 0;
    width: 160%;
    height: 1px;
    background-image: linear-gradient(to right, var(--textColor) 1px, transparent 1px); background-size: 3px 1px; background-repeat: repeat-x; background-position: left bottom;
    z-index: -1;
}
/* boxTxt */
.secFlow .boxTxt{
    width: 100%;
    text-align: center;
}
.secFlow .boxTxt .num{
    width: 13rem;
    margin: 0 auto;
    font-size: var(--pcFS40);
    font-weight: bold;
    color: var(--greenColor);
    background-color: var(--whiteColor);
}
.secFlow .boxTxt .tit{
    font-size: var(--pcFS26);
    letter-spacing: var(--pcLH26_50);
    font-weight: bold;
    margin-top: 5rem;
}
.secFlow .boxTxt .txt{
    position: absolute;
    bottom: 4rem;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    font-size: var(--pcFS18);
    line-height: var(--pcLH18_28);
    letter-spacing: var(--pcLS18_50);
    height: calc(var(--pcFS18) * var(--pcLH18_28) * 4);
    font-weight: bold;
    color: var(--whiteColor);
}
/* boxImg */
.secFlow .boxImg{
    position: relative;
    margin-top: 4rem;
}
.secFlow .boxImg .img{
    position: relative;
    border-radius: 5rem;
    overflow: hidden;
}
.secFlow .boxImg .img::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20rem;
    background: linear-gradient(to top, var(--blackColor_50), transparent);
}
/* boxMoreLink */
.boxMoreLink{
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 8rem auto 0;
}
.boxMoreLink.moreView{
    display: none;
}
.boxMoreLink .moreLink{
    position: relative;
    width: 100%;
    min-height: 9rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--gray_lightColor);
    box-shadow: 0 1px 0 0 var(--blackColor_15);
    font-size: var(--pcFS20);
    font-weight: bold;
    border-radius: 1rem;
    padding: 2rem 4.2rem;
    transition: 0.4s ease-out;
}
.boxMoreLink .moreLink::after{
    right: 4rem;
}
@media only screen and (max-width:1215px){
    .secFlow{
        margin-top: 1rem;
    }
    .secFlow .boxListFrow{
        position: relative;
        flex-direction: column;
        gap: 2rem;
    }
    .secFlow .boxListFrow::before{
        position: absolute;
        content: '';
        margin: auto;
        display: block;
        top: 0;
        left: 1rem;
        width: 1px;
        height: 100%;
        background-image: linear-gradient(to bottom, var(--textColor) 1px, transparent 1px); background-size: 1px 3px; background-repeat: repeat-y; background-position: left top;
        z-index: -1;
    }
    .secFlow .boxListFrow .item{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: var(--whiteColor);
    }
    .secFlow .boxListFrow .item:nth-child(2)::before{
        display: none;
    }
    /* boxTxt */
    .secFlow .boxTxt{
        width: calc(100% - (11rem + 1.5rem));
        text-align: left;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: center;
    }
    .secFlow .boxTxt .num{
        width: auto;
        margin: 0;
        font-size: var(--spFS26);
    }
    .secFlow .boxTxt .tit{
        font-size: var(--spFS16);
        letter-spacing: var(--spLS16_0);
        margin:  0 0 0 1rem;
    }
    .secFlow .boxTxt .txt{
        position: static;
        align-items: flex-start;
        font-size: var(--spFS14);
        line-height: var(--spLHW14_24);
        letter-spacing: var(--spLS14_0);
        height: auto;
        font-weight: 500;
        color: var(--textColor);
        margin-top: 0.8rem;
    }
    /* boxImg */
    .secFlow .boxImg{
        position: static;
        display: flex;
        justify-content: flex-end;
        margin-top: 0;
        width: 11rem;
    }
    .secFlow .boxImg .img{
        border-radius: 1.5rem;
    }
    .secFlow .boxImg .img::after {
        height: 60%;
    }
    /* boxMoreLink */
    .boxMoreLink{
        margin-top: 3rem;
    }
    .boxMoreLink .moreLink{
        min-height: 10rem;
        font-size: var(--spFS14);
        line-height: var(--spLHW14_24);
        font-weight: 500;
        border-radius: 0.8rem;
        padding: 2rem 1.5rem;
        justify-content: flex-start;
    }
    .boxMoreLink .moreLink::after{
        right: 2rem;
    }
}


/*-----------------------------------------------
    boxListMain
-----------------------------------------------*/
.cmnSticky{
    margin-top: 15rem;
}
.boxListMain{
    display: flex;
    flex-wrap: wrap;
    counter-reset: number 0;
    gap: 18rem;
}
.boxListMain .item{
    width: 100%;
}
/* boxHead */
.boxListMain .boxHead{
    position: relative;
    width: 100%;
    padding: 3.5rem 0 5rem;
}
.boxListMain .boxHead::before {
    position: absolute;
    counter-increment: number 1;
    content: counter(number,decimal-leading-zero);
    color: var(--greenColor);
    left: 0;
    top: 0;
    margin: auto;
    z-index: 2;
    font-size: var(--pcFS22);
    letter-spacing: var(--pcLS22_50);
    font-weight: bold;
}
.boxListMain .boxHead .tit{
    font-size: var(--pcFSTit);
    line-height: var(--pcLHTit);
    letter-spacing: var(--pcLSTit);
    font-weight: bold;
    margin-bottom: 3rem;
}
.boxListMain .boxHead .img{
    width: calc(100% + 15.653%);
    margin-bottom: 5.5rem;
}
.boxListMain .boxHead img{
    border-bottom-left-radius: 10rem;
}
.boxListMain .boxHead .txt{
    text-align: right;
    font-size: var(--pcFS18);
    letter-spacing: var(--pcLS18_50);
}
.boxListMain .boxHead .fGray{
    font-size: var(--pcFS14);
}
@media only screen and (max-width:1215px){
    .cmnSticky{
        margin-top: 6rem;
    }
    .boxListMain{
        margin-top: 3.5rem;
        gap: 8rem;
    }
    /* boxHead */
    .boxListMain .boxHead{
        padding: 2rem 0 0;
        margin-bottom: 2rem;
    }
    .boxListMain .boxHead::before {
        font-size: var(--spFS16);
    }
    .boxListMain .boxHead .tit{
        font-size: var(--spFSSTit);
        line-height: var(--spLHSTit);
        letter-spacing: var(--spLSSTit);
        margin-bottom: 1.5rem;
    }
    .boxListMain .boxHead .img{
        margin-bottom: 1rem;
    }
    .boxListMain .boxHead img{
        border-bottom-left-radius: 4rem;
    }
    .boxListMain .boxHead .txt{
        font-size: var(--spFS12);
        line-height: var(--spLHW12_24);
        letter-spacing: var(--spLS12_0);
    }
    .boxListMain .boxHead .fGray{
        font-size: var(--spFS10);
    }
}

/*-----------------------------------------------
    boxBody
-----------------------------------------------*/
.boxBodyAccordion{
    margin-top: 5rem;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid var(--grayColor);
}
.boxBodyAccordion .item{
    position: relative;
    width: 100%;
}
.boxBodyAccordion .boxAccordionHead{
    position: relative;
    width: 100%;
    padding: 4.5rem 0;
    border-top: 1px solid var(--grayColor);
}
.boxBodyAccordion .boxAccordionHead:before,
.boxBodyAccordion .boxAccordionHead:after{
    position: absolute;
    content: '';
    margin: auto;
    display: block;
    top: 0;
    bottom: 0;
    right: 0;
    width: 2.4rem;
    height: 2px;
    background-color: var(--greenColor);
    transition: 0.4s ease-out;
}
.boxBodyAccordion .boxAccordionHead:after{
    transform: rotate(90deg);
}
.boxBodyAccordion .boxAccordionHead.on:after{
    transform: rotate(0);
}
.boxBodyAccordion .boxAccordionHead .tit{
    position: relative;
    font-size: var(--pcFS26);
    line-height: var(--pcLH26_36);
    color: var(--greenColor);
    font-weight: bold;
    padding: 0 3.5rem 0 2rem
}
.boxBodyAccordion .boxAccordionHead .tit::before{
    position: absolute;
    content: '';
    margin: auto;
    display: block;
    top: 1rem;
    left: 0;
    width: 1rem;
    height: 1rem;
    border-radius: 100%;
    background-color: var(--green_lightColor);
}
/* boxAccordionBody */
.boxBodyAccordion .boxAccordionBody{
    display: none;
    width: calc(100% - 10rem);
    margin: 1rem auto 10rem;
}
.boxBodyAccordion .boxBodyTop{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.boxBodyAccordion .boxBodyTop + .boxBodyTop{
    margin-top: 5rem;
}
.boxBodyAccordion .boxBodyTop .boxImg{
    width: 32rem;
}
.boxBodyAccordion .img20{
    border-radius: 2rem;
}
.boxBodyAccordion .img50{
    border-radius: 5rem;
}
.boxBodyAccordion .boxBodyTop .boxTxt{
    width: calc(100% - (32rem + 5rem));
}
.boxBodyAccordion .boxBodyTop .tag{
    min-width: 14.9rem;
    text-align: center;
    font-size: var(--pcFS22);
    color: var(--greenColor);
    background-color: var(--green_light2Color);
    padding: 1.4rem 3rem;
    border-radius: 1rem;
    display: inline-block;
    font-weight: bold;
}
.boxBodyAccordion .boxBodyTop .tit{
    position: relative;
    margin-top: 3rem;
    font-size: var(--pcFS24);
    line-height: var(--pcLH24_36);
    font-weight: bold;
    padding-left: 1.5rem;
}
.boxBodyAccordion .boxBodyTop .tit::before{
    position: absolute;
    content: '';
    margin: auto;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    width: 0.5rem;
    height: 100%;
    background-color: var(--greenColor);
}
.boxBodyAccordion .boxBodyTop .txt{
    margin-top: 2rem;
    font-size: var(--pcFS18);
    line-height: var(--pcLHW18_36);
}
.boxBodyAccordion .boxBodyTop .img{
    margin-top: 2rem;
}
/* boxBodyBottom */
.boxBodyAccordion .boxBodyBottom{
    text-align: center;
    margin-top: 5rem;
}
.boxBodyAccordion .boxBodyBottom .img{
    width: 100%;
}
.boxBodyAccordion .boxBodyBottom .img.w850{
    width: 85rem;
    margin: 0 auto;
}
.boxBodyAccordion .boxBodyBottom .img.w950{
    width: 95rem;
    margin: 0 auto;
}
@media only screen and (max-width:1215px){
    .boxBodyAccordion{
        margin-top: 2rem;;
    }
    .boxBodyAccordion .item{
        position: relative;
        width: 100%;
    }
    .boxBodyAccordion .boxAccordionHead{
        padding: 1.4rem 0;
    }
    .boxBodyAccordion .boxAccordionHead:before,
    .boxBodyAccordion .boxAccordionHead:after{
        width: 1.8rem;
    }
    .boxBodyAccordion .boxAccordionHead .tit{
        font-size: var(--spFS15);
        line-height: var(--spLHW15_24);
        letter-spacing: var(--spLS15_0);
        padding: 0 2.1rem 0 2.1rem;
    }
    .boxBodyAccordion .boxAccordionHead .tit::before{
        top: 0.7rem;
        width: 1.2rem;
        height: 1.2rem;
    }
    /* boxAccordionBody */
    .boxBodyAccordion .boxAccordionBody{
        width: 100%;
        margin: 1rem auto 4rem;
    }
    .boxBodyAccordion .boxBodyTop{
        flex-wrap: wrap;
    }
    .boxBodyAccordion .boxBodyTop .boxImg{
        width: 27.5rem;
        margin: 0 auto;
    }
    .boxBodyAccordion .img20{
        border-radius: 1rem;
    }
    .boxBodyAccordion .img50{
        border-radius: 2.5rem;
    }
    .boxBodyAccordion .boxBodyTop .boxTxt{
        width: 100%;
        margin-top: 2rem;
    }
    .boxBodyAccordion .boxBodyTop .tag{
        min-width: 8rem;
        font-size: var(--spFS16);
        padding: 1.2rem 0.8rem;
        border-radius: 0.6rem;
    }
    .boxBodyAccordion .boxBodyTop .tit{
        margin-top: 1.8rem;
        font-size: var(--spFS16);
        line-height: var(--spLHS16_24);
        padding-left: 1.2em;
    }
    .boxBodyAccordion .boxBodyTop .tit::before{
        width: 0.4rem;
    }
    .boxBodyAccordion .boxBodyTop .txt{
        margin-top: 1rem;
        font-size: var(--spFS14);
        line-height: var(--spLHW14_24);
    }
    .boxBodyAccordion .boxBodyTop .in{
        display: block;
        margin-top: 1rem;
    }
    /* boxBodyBottom */
    .boxBodyAccordion .boxBodyBottom{
        margin-top: 3rem;
    }
    .boxBodyAccordion .boxBodyBottom .img.w850,
    .boxBodyAccordion .boxBodyBottom .img.w950{
        width: 100%;
    }
}


/*-----------------------------------------------
    item01_03
-----------------------------------------------*/
.boxBodyAccordion .item01_03 .txt{
    display: flex;
    flex-direction: column-reverse;
}
@media only screen and (max-width:1215px){
    .boxBodyAccordion .item01_03 .txt{
        display: block;
    }
    .boxBodyAccordion .item01_03 .img{
        margin-top: 0;
        width: 8rem;
        display: block;
        float: right;
    }
}

/*-----------------------------------------------
    item01_04
-----------------------------------------------*/
.item01_04 .imgTxt{
    text-align: right;
    font-size: var(--pcFS16);
    margin-bottom: 3rem;
}
.boxBodyAccordion .boxManifest{
    margin-top: 10rem;
}
/* boxManifestImg */
.item01_04 .boxManifestImg{
    margin-top: 5rem;
    background-color: var(--beigeColor);
    padding: 8rem 10rem;
    border-radius: 1rem;
}
.item01_04 .boxManifestImg .txt{
    font-size: var(--pcFS16);
    line-height: var(--pcLHW16_32);
    letter-spacing: var(--pcLS16_50);
}
.item01_04 .boxManifestImg .boxImg{
    margin-top: 2rem;
    text-align: center;
}
/* boxManifestBottom */
.item01_04 .boxManifestBottom{
    margin-top: 7rem;
    flex-direction: column;
}
.item01_04 .boxManifestBottom .boxTxt{
    width: 100%;
}
.item01_04 .boxManifestBottom .tit{
    margin-top: 0;
}
.item01_04 .boxManifestBottom .boxTxtPoint{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.item01_04 .boxManifestBottom .in{
    display: flex;
    gap: 0.5rem;
}
/* boxTxtPoint */
.item01_04 .boxTxtPoint .txt{
    width: calc(100% - (23rem + 6rem));
}
.item01_04 .boxTxtPoint .boxImg{
    width: 23rem;
}
/* boxListSystem */
.item01_04 .boxListSystem{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 4rem;
}
.item01_04 .boxListSystem .itemSystem{
    width: 100%;
    min-height: 20rem;
    background-color: var(--beigeColor);
    border-radius: 0 1rem 1rem 0;
    display: flex;
    justify-content: center;
}
.item01_04 .boxListSystem .boxTit{
    width: 18rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.item01_04 .itemSystem:nth-child(1) .boxTit{
    background-color: var(--keyColor_green);
}
.item01_04 .itemSystem:nth-child(2) .boxTit{
    background-color: var(--keyColor_blue);
}
.item01_04 .itemSystem:nth-child(3) .boxTit{
    background-color: var(--keyColor_red);
}
.item01_04 .boxListSystem .titSystem{
    font-size: var(--pcFS18);
    line-height: var(--pcLH18_28);
    letter-spacing: var(--pcLS18_50);
    color: var(--whiteColor);
    text-align: center;
}
.item01_04 .boxListSystem .boxTxtSystem{
    width: calc(100% - 18rem);
    padding: 3.4rem 4rem;
    display: flex;
    align-items: center;
}
.item01_04 .boxListSystem .txtSystem{
    font-size: var(--pcFS16);
    line-height: var(--pcLH16_28);
}
.item01_04 .boxListSystem .in{
    display: flex;
    gap: 0.8rem;
}
.item01_04 .boxListSystem .fGray{
    position: relative;
    top: 0.2rem;
    font-size: var(--pcFS14);
}
@media only screen and (max-width:1215px){
    .item01_04 .imgTxt{
        text-align: left;
        font-size: var(--spFS12);
        margin-bottom: 2rem;
    }
    .item01_04 .scrollItem img{
        width: 52.5rem;
    }
    /* item01_04 */
    .boxBodyAccordion .boxManifest{
        margin-top: 6rem;
    }
    .item01_04 .boxManifestImg{
        margin-top: 2.5rem;
        padding: 3rem 2rem;
        border-radius: 0.5rem;
    }
    .item01_04 .boxManifestImg .txt{
        font-size: var(--spFS14);
        line-height: var(--spLHW14_24);
        letter-spacing: var(--spLS14_0);
    }
    .item01_04 .boxManifestImg .boxImg{
        width: 19rem;
        margin: 2rem auto 0;
    }
    .item01_04 .boxManifestBottom{
        position: relative;
        margin-top: 2rem;
    }
    .item01_04 .boxManifestBottom .boxTxt{
        width: 100%;
    }
    .item01_04 .boxManifestBottom .tit{
        margin-top: 0;
    }
    .item01_04 .boxPoint .boxTxt .txt{
        width: calc(100% - (10rem + 2rem));
    }
    .item01_04 .boxManifestBottom .boxTxtPoint{
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }
    .item01_04 .boxManifestBottom .in{
        margin: 0;
        display: flex;
        gap: 0.8rem;
    }
    .item01_04 .boxTxtPoint .txt{
        width: 100%;
    }
    .item01_04 .boxTxtPoint .boxImg{
        position: absolute;
        top: 5rem;
        right: 0;
        width: 10rem;
        margin: 0;
    }
    /* boxListSystem */
    .item01_04 .boxListSystem{
        gap: 1rem;
        margin-top: 2.5rem;
    }
    .item01_04 .boxListSystem .itemSystem{
        min-height: auto;
        border-radius: 0 0 0.5rem 0.5rem;
        flex-direction: column;
    }
    .item01_04 .boxListSystem .boxTit{
        width: 100%;
        padding: 1.2rem 1rem;
    }
    .item01_04 .boxListSystem .titSystem{
        font-size: var(--spFS14);
        line-height: var(--spLH14_20);
        letter-spacing: var(--spLS14_0);
    }
    .item01_04 .boxListSystem .boxTxtSystem{
        width: 100%;
        padding: 2rem 1.8rem;
        flex-direction: column;
    }
    .item01_04 .boxListSystem .txtSystem{
        font-size: var(--spFS14);
        line-height: var(--spLHW14_24);
    }
    .item01_04 .boxListSystem .in{
        gap: 0.8rem;
    }
    .item01_04 .boxListSystem .fGray{
        top: 0.2rem;
        font-size: var(--spFS14);
    }
}

/*-----------------------------------------------
    item01_05
-----------------------------------------------*/
.item01_05 .imgTxt{
    font-size: var(--pcFS18);
    text-align: left;
}
.item01_05 .boxBodyBottom .img{
    margin-top: 3rem;
    width: 45rem;
}
@media only screen and (max-width:1215px){
    .item01_05 .imgTxt{
        font-size: var(--spFS14);
    }
    .item01_05 .boxBodyBottom .img{
        width: 28rem;
        margin: 2rem auto 0;
    }
}

/*-----------------------------------------------
    item01_06
-----------------------------------------------*/
.item01_06 .boxListRecycle{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem 3rem;
}
.item01_06 .boxListRecycle .itemRecycle{
    position: relative;
    width: calc((100% - 3rem) / 2);
    height: auto;
    min-height: 48rem;
    border-radius: 3rem;
    overflow: hidden;
    color: var(--whiteColor);
}
.item01_06 .boxListRecycle .bgYellow{
    background: linear-gradient(to top, var(--keyDarkColor_yellow) 90%, transparent 10%);
}
.item01_06 .boxListRecycle .bgGreen{
    background: linear-gradient(to top, var(--keyDarkColor_green) 90%, transparent 10%);
}
.item01_06 .boxListRecycle .bgRed{
    background: linear-gradient(to top, var(--keyDarkColor_red) 90%, transparent 10%);
}
.item01_06 .boxListRecycle .bgBlue{
    background: linear-gradient(to top, var(--keyDarkColor_blue) 90%, transparent 10%);
}
.item01_06 .boxListRecycle .boxImg{
    position: relative;
    z-index: 1;
}
.item01_06 .boxListRecycle .txtNum{
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 9rem;
    height: 9rem;
    font-weight: 500;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 0.5rem;
}
.item01_06 .boxListRecycle .txtNum.bgYellow{
    background: var(--keyDarkColor_yellow);
}
.item01_06 .boxListRecycle .txtNum.bgGreen{
    background: var(--keyDarkColor_green);
}
.item01_06 .boxListRecycle .txtNum.bgRed{
    background: var(--keyDarkColor_red);
}
.item01_06 .boxListRecycle .txtNum.bgBlue{
    background: var(--keyDarkColor_blue);
}
.item01_06 .boxListRecycle .num{
    font-size: var(--pcFS36);
}
.item01_06 .boxListRecycle .unit{
    font-size: var(--pcFS28);
}
.item01_06 .boxListRecycle .unitIn{
    position: relative;
    top: -1rem;
    font-size: var(--pcFS16);
}
/* boxTxt */
.item01_06 .boxListRecycle .boxTxt{
    position: relative;
    padding: 4rem 2rem 2rem 10rem;
    text-align: left;
    font-weight: bold;
    z-index: 1;
}
.item01_06 .boxListRecycle .tit{
    font-size: var(--pcFS30);
}
.item01_06 .boxListRecycle .txt{
    font-size: var(--pcFS15);
    line-height: var(--pcLHW15_24);
    margin: 1rem 0 0 0.5rem;
}
.item01_06 .boxListRecycle .txtSize{
    position: absolute;
    top: 2rem;
    left: 2rem;
    width: 7rem;
    height: 7rem;
    background-color: var(--whiteColor);
    font-weight: 500;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 0.5rem;
    font-size: var(--pcFS36);
}
/* txtMemo */
.item01_06 .txtMemo{
    font-size: var(--pcFS16);
    line-height: var(--pcLH16_28);
    letter-spacing: var(--pcLS16_50);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    margin-top: 4rem;
}
/* boxNotice */
.item01_06 .boxNotice{
    position: relative;
    color: var(--red_darkColor);
    padding: 5rem 9rem;
    text-align: left;
    margin-top: 4.5rem;
}
.item01_06 .boxNotice:before{
    position: absolute;
    content: '';
    margin: auto;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--keyDarkColor_red);
    opacity: 0.05;
    border-radius: 1rem;
}
.item01_06 .boxNotice .tit{
    font-weight: bold;
    font-size: var(--pcFS18);
}
.item01_06 .boxNotice .txt{
    font-size: var(--pcFS16);
    line-height: var(--pcLH16_28);
    margin-top: 1rem;
}
/* boxContact */
.boxBodyBottom .boxContact{
    padding: 6.5rem;
    border: 0.1rem solid var(--grayColor);
    border-radius: 1rem;
    margin-top: 5rem;
}
.boxBodyBottom .boxContact .link{
    display: block;
    text-align: center;
}
.boxBodyBottom .boxContact .tit{
    font-size: var(--pcFS28);
    font-weight: bold;
}
.boxBodyBottom .boxContact .num{
    color: var(--greenColor);
    font-size: var(--pcFS56);
    letter-spacing: var(--pcLH56_50);
    font-weight: 500;
    margin: 2rem 0;
}
.boxBodyBottom .boxContact .txt{
    font-size: var(--pcFS18);
    letter-spacing: var(--pcLS18_50);
}
.boxBodyBottom .boxContact .txtMin{
    font-size: var(--pcFS16);
    line-height: var(--pcLH16_28);
    margin-top: 2.8rem;
}
.item01_06 .boxListType{
    justify-content: center;
    margin-top: 4rem;
}
.item01_06 .boxListType .txtSize{
    position: static;
    color: var(--whiteColor);
}
.item01_06 .boxListType .bgYellow{
    background: var(--keyDarkColor_yellow);
}
.item01_06 .boxListType .bgGreen{
    background: var(--keyDarkColor_green);
}
.item01_06 .boxListType .bgBlue{
    background: var(--keyDarkColor_blue);
}
.item01_06 .boxListType .bgRed{
    background: var(--keyDarkColor_red);
}
@media only screen and (max-width:1215px){
    .item01_06 .swiper{
        width: 29.5rem;
        margin: 0 auto 0 0;
        overflow: visible;
    }
    .item01_06 .boxListRecycle{
        width: 100%;
        flex-wrap: unset;
        gap: 0;
    }
    .item01_06 .boxListRecycle .itemRecycle{
        position: relative;
        min-height: auto;
        border-radius: 1rem;
    }
    .item01_06 .boxListRecycle .boxImg{
        position: relative;
        z-index: 1;
    }
    .item01_06 .boxListRecycle .txtNum{
        top: 1rem;
        right: 1rem;
        width: 5rem;
        height: 5rem;
        padding-bottom: 0;
    }
    .item01_06 .boxListRecycle .num{
        font-size: var(--pcFS20);
    }
    .item01_06 .boxListRecycle .unit{
        font-size: var(--pcFS16);
    }
    .item01_06 .boxListRecycle .unitIn{
        top: -0.6rem;
        font-size: var(--pcFS10);
    }
    /* boxTxt */
    .item01_06 .boxListRecycle .boxTxt{
        position: static;
        padding: 2rem 2rem;
        z-index: 1;
    }
    .item01_06 .boxListRecycle .tit{
        font-size: var(--pcFS18);
        line-height: var(--pcLH18_28);
    }
    .item01_06 .boxListRecycle .txt{
        font-size: var(--pcFS12);
        line-height: var(--pcLH12_18);
        margin: 0 0 0 0.3rem;
    }
    .item01_06 .boxListRecycle .txtSize{
        top: 1rem;
        left: 1rem;
        width: 5rem;
        height: 5rem;
        padding-bottom: 0;
        font-size: var(--spFS26);
        z-index: 1;
    }
    .item01_06 .swiper-horizontal>.swiper-scrollbar,
    .item01_06 .swiper-scrollbar.swiper-scrollbar-horizontal{
        position: absolute;
        left: -1rem;
        bottom: 1rem;
        height: 5px;
        background: transparent;
    }
    .item01_06 .swiper-scrollbar-drag{
        max-width: 100% !important;
        border-radius: 0.25rem;
        background-color: var(--blackColor_15);
    }
    .item01_06 .txtMemo{
        font-size: var(--spFS12);
        line-height: var(--spLH12_18);
        letter-spacing: var(--spLS12_0);
        margin-top: 2rem;
    }
    /* boxNotice */
    .item01_06 .boxNotice{
        padding: 2rem 1rem 2.5rem 1.5rem;
        margin-top: 2rem;
    }
    .item01_06 .boxNotice:before{
        border-radius: 0.5rem;
    }
    .item01_06 .boxNotice .tit{
        font-size: var(--spFS13);
        line-height: var(--spLH13_24);
    }
    .item01_06 .boxNotice .txt{
        font-size: var(--spFS12);
        line-height: var(--spLH12_18);
        margin-top: 0.5rem;
    }
    /* boxContact */
    .boxBodyBottom .boxContact{
        padding: 3rem 1rem;
        border-radius: 0.5rem;
        margin-top: 3rem;
    }
    .boxBodyBottom .boxContact .tit{
        font-size: var(--spFS16);
    }
    .boxBodyBottom .boxContact .num{
        font-size: var(--spFS30);
        letter-spacing: var(--spLS30_50);
        margin: 1.8rem 0 1rem;
    }
    .boxBodyBottom .boxContact .txt{
        font-size: var(--spFS12);
        letter-spacing: var(--spLS12_0);
    }
    .boxBodyBottom .boxContact .txtMin{
        font-size: var(--spFS12);
        line-height: var(--spLH12_18);
        margin-top: 1.4rem;
    }
    .item01_06 .boxListType{
        margin-top: 2rem;
        gap: 2rem;
    }
    .item01_06 .boxListType .txtSize{
        position: static;
        width: 4.4rem;
        height: 4.4rem;
        font-size: var(--spFS22);
    }
}

/*-----------------------------------------------
    item02_02
-----------------------------------------------*/
.item02_02 .boxTxt .img{
    width: 64.4rem;
    margin-top: 2.5rem;
}
@media only screen and (max-width:1215px){
    .item02_02 .boxTxt .img{
        width: 100%;
        margin-top: 0;
    }
}

/*-----------------------------------------------
    item02_03
-----------------------------------------------*/
.item02_03 .boxBodyBottom + .boxBodyTop{
    margin-top: 5rem;
}
@media only screen and (max-width:1215px){
    .item02_03 .boxBodyBottom + .boxBodyTop{
        margin-top: 3rem;
    }
}

/*-----------------------------------------------
    item02_05
-----------------------------------------------*/
.item02_05 .boxInfo{
    position: relative;
    padding: 3rem 5rem;
    text-align: left;
    margin-bottom: 4.5rem;
    background-color: var(--beigeColor);
    border-radius: 1rem;
}
.item02_05 .boxInfo .tit{
    font-size: var(--pcFS16);
    line-height: var(--pcLHW16_32);
}
.item02_05 .boxBodyBottom .img{
    width: 74rem;
    margin: 0 auto;
}
@media only screen and (max-width:1215px){
    .item02_05 .boxInfo{
        padding: 2.5rem 2rem;
        margin-bottom: 2rem;
        border-radius: 0.5rem;
    }
    .item02_05 .boxInfo .fBold{
        font-size: var(--spFS14);
        display: inline-block;
        margin-bottom: 0.5rem;
    }
    .item02_05 .boxInfo .tit{
        font-size: var(--spFS12);
        line-height: var(--spLH12_18);
    }
    .item02_05 .boxBodyBottom .img{
        width: 100%;
    }
}

/*-----------------------------------------------
    item02_06
-----------------------------------------------*/
.item02_06 .boxBodyBottom .img{
    width: 74rem;
    margin: 0 auto;
}
@media only screen and (max-width:1215px){
    .item02_06 .boxBodyBottom .img{
        width: 100%;
    }
}

/*-----------------------------------------------
    item02_07
-----------------------------------------------*/
.item02_07 .boxContact .txtMin{
    font-size: var(--pcFS20);
    line-height: var(--pcLH20_30);
}
.item02_07 .imgTxt{
    font-size: var(--pcFS18);
    text-align: center;
    font-weight: bold;
}
.item02_07 .boxBodyTop .img{
    margin-top: 3rem;
    width: 57.5rem;
}
@media only screen and (max-width:1215px){
    .item02_07 .boxContact .txtMin{
        font-size: var(--spFS12);
        line-height: var(--spLH12_18);
    }
    .item02_07 .imgTxt{
        font-size: var(--spFS14);
    }
    .item02_07 .boxBodyTop .img{
        width: 29rem;
        margin: 2rem auto 0;
    }
}

/*-----------------------------------------------
    item02_08
-----------------------------------------------*/
.item02_08 .boxDlTable{
    margin-top: 2rem;
}
@media only screen and (max-width:1215px){
    .item02_08 .boxDlTable{
        margin-top: 1rem;
    }
}

/*-----------------------------------------------
    item03_01
-----------------------------------------------*/
.item03_01 .imgTxt,
.item03_01 .boxBodyBottom .img{
    width: 79rem;
    margin: 0 auto;
}
.item03_01 .imgTxt {
    text-align: center;
    font-size: var(--pcFS16);
    margin-bottom: 3rem;
}
@media only screen and (max-width:1215px){
    .item03_01 .imgTxt,
    .item03_01 .boxBodyBottom .img{
        width: 100%;
    }
    .item03_01 .imgTxt {
        font-size: var(--spFS12);
        margin-bottom: 2rem;
    }
    .item03_01 .scrollItem img{
        width: 53.5rem;
    }
}

/*-----------------------------------------------
	boxDlTable
-----------------------------------------------*/
.boxDlTable{
    margin: 0 auto;
    border-top: 0.1rem solid var(--grayColor);
}
.boxDlTable .tr{
    position: relative;
    display: flex;
    font-size: var(--pcFS18);
    line-height: var(--pcLH18_28);
    letter-spacing: var(--pcLS18_50);
    background-color: var(--whiteColor);
}
.boxDlTable .tr:before,
.boxDlTable .td:after,
.boxDlTable .th:after,
.boxDlTable .tr:after{
    position: absolute;
    content: '';
    margin: auto;
    display: block;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--grayColor);
    opacity: 0.8;
    z-index: 1;
}
.boxDlTable .td:after,
.boxDlTable .th:after,
.boxDlTable .tr:after{
    width: 1px;
    height: 100%;
}
.boxDlTable .th:after,
.boxDlTable .td:after{
    left: auto;
    right: 0;
}
.boxDlTable .th{
    position: relative;
    width: 22rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    background-color: var(--gray_lightColor);
}
.boxDlTable .th,
.boxDlTable .td{
    padding: 2rem 3rem;
}
.boxDlTable .td{
    flex: 1;
}
.boxDlTable .txtLink{
    text-decoration: underline;
    color: var(--linkColor);
}
@media only screen and (max-width:1215px){
    .boxDlTable{
        width: 100%;
    }
    .boxDlTable .tr{
        font-size: var(--spFS12);
        line-height: var(--spLH12_18);
        letter-spacing: var(--spLS12_0);
    }
    .boxDlTable .th{
        width: 10rem;
    }
    .boxDlTable .th,
    .boxDlTable .td{
        padding: 1rem 1.2rem;
    }
}

/*-----------------------------------------------
    scrollItem
-----------------------------------------------*/
@media only screen and (max-width:1215px){
	.scrollItem:not(.tablet){
        position: relative;
        width: calc(100vw - 7.69%);
        height: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .scrollItem:not(.tablet)::-webkit-scrollbar{
        display: none;
    }
    .scrollItem:not(.tablet)::before{
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background: url(../img/common/iconScroll.png) center center / 145px auto no-repeat;
        transition: all 0.2s ease-out 0.2s;
        animation: scrollItemAnimation 1s linear infinite;
        z-index: 10;
        pointer-events: none;
    }
    .scrollItem:not(.tablet).scrolled::before{
        opacity: 0;
    }
    .scrollItem:not(.tablet) img {
        margin-right: 7vw;
    }
    @keyframes scrollItemAnimation {
        0%   { transform:translateX(0); }
        25%   { transform:translateX(10px) }
        50% { transform:translateX(0); }
        75% { transform:translateX(-10px); }
        100% { transform:translateX(0); }
    }
	.tablet .scrollItem img{
        width: 100%!important;
    }
}