@charset "utf-8";
/* CSS Document */

/*============= MV =============*/

#mv_area{
    padding: clamp(100px, 24.25vh, 240px) 0 100px;
    min-height: 100vh;
}
#mv_area .contents_in{
    padding: 0 0 clamp(60px, 6vw, 160px);
    position: relative;
}
#mv_area .contents_in::after{
    content: '';
    display: block;
    width: clamp(220px, 30vh, 280px);
    height: clamp(220px, 30vh, 280px);
    background: url(../images/top/mv_illust.png) no-repeat center;
    background-size: contain;
    position: absolute;
    bottom: -25%;
    right: 8%;
    z-index: 10;
    opacity: 0;
    transform: translateY(30px);
    animation: FadeInUp ease .8s forwards;
    animation-delay: 1.2s;
}
#mv_area h1{
    font-weight: 600;
    font-size: 46px;
    line-height: 1.3;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateX(-30px);
    animation: FadeInUp ease .8s forwards;
    animation-delay: .8s;
}
#mv_area .h1_en{
    font-size: 15px;
    color: var(--color-sub-blue);
    margin-left: 8px;
    opacity: 0;
    transform: translateX(-30px);
    animation: FadeInUp ease .8s forwards;
    animation-delay: 1.2s;
}
#mv_area .swiper-wrapper {
  transition-timing-function: linear;
}
#mv_area .mv_slider .swiper-slide{
    width: clamp(272px, 34.5vh, 400px);
    padding: 0 10px;
}
@media screen and (orientation: portrait) {
/* 画面の幅より高さが大きい時 */
    #mv_area{
        padding: clamp(100px, 24.25vh, 300px) 0 100px;
        min-height: calc(100vh - 80px);
    }
    #mv_area .contents_in{
        padding: 0 0 clamp(60px, 10vw, 160px);
    }
    #mv_area .contents_in::after{
        width: clamp(220px, 20vw, 280px);
        right: 0;
    }
    #mv_area .mv_slider .swiper-slide{
        width: clamp(272px, 38vh, 480px);
    }

}

@media all and (max-width: 1024px){
    #mv_area .h1_en{
        font-size: 14px;
    }
}

@media all and (max-width: 767px){
    #mv_area{
        padding: clamp(120px, 18vh, 200px) 0 50px;
    }
    #mv_area .contents_in{
        padding: 0 0 clamp(80px, 16vh, 160px);
    }
    #mv_area .contents_in::after {
        width: clamp(148px, 38vw, 240px);
        height: clamp(148px, 38vw, 240px);
        bottom: -15%;
    }
    #mv_area h1{
        font-size: 30px;
        margin-bottom: 12px;
    }
    #mv_area .h1_en{
        font-size: 12px;
        margin-left: 2px;
    }

}



/*============= SERVICE =============*/

#service_area .contents_in{
    display: flex;
    align-items: stretch;
    gap: 60px;
}
.service_text_g{
    max-width: 380px;
    width: 31.6%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.service_text_g::before{
    content: '';
    display: block;
    width: 756px;
    height: 756px;
    background: url(../images/common/bg_circle.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}
@keyframes centerRotation { 
    0%{ transform:translate(-50%, -50%) rotate(0);}
  100%{ transform:translate(-50%, -50%) rotate(360deg); }
}
.service_text_g.rotation::before{
    animation: centerRotation linear 24s infinite;
}
.service_cnt_g{
    max-width: 760px;
    width: 63.3%;
}
.service_cnt_box{
    display: block;
    width: 100%;
    background: #fff;
    filter: var(--filter-shadow);
    margin-bottom: 40px;
    padding: 24px 24px 24px 40px;
    border-left: 5px solid var(--service-color);
    position: relative;
    /* opacity: 0;
    transform: translateX(-10%);
    transition: .8s ease;
	transition-delay: .4s; */
}
/* .service_cnt_box.show{
    transform: translateX(0);
    opacity: 1;   
} */
.service_cnt_box:last-of-type{
    margin-bottom: 0;
}
.service_cnt_box::after{
    content: '';
    display: block;
    width: clamp(172px, 26.4%, 200px);
    height: 160px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: -16%;
    right: 24px;
    z-index: -1;
}
.service_cnt_box.purchase::after{
    background-image: url(../images/common/illust_service01.png);
}
.service_cnt_box.disposal::after{
    background-image: url(../images/common/illust_service02.png);
}
.service_cnt_box.collect::after{
    background-image: url(../images/common/illust_service03.png);
}
.service_cnt_box .num{
    font-size: 36px;
    color: var(--service-color);
    margin-bottom: 8px;
}
.service_cnt_box h3{
    font-size: 22px;
    margin-bottom: 8px;
}
.service_cnt_box p{
    margin-bottom: 20px;
}
.service_cnt_box .btn_style01{
    display: inline-block;
    vertical-align: top;
    margin-right: 10px;
    max-width: 260px;
    margin-bottom: 10px;
}
.service_cnt_box .btn_style01 a{
    background: var(--service-color);
    color: #fff;
}
.service_cnt_box .btn_style01 a::before,
.service_cnt_box .btn_style01 a::after{
    background: #fff;
}
.service_cnt_box .btn_style01 a:hover::after{
    background: var(--service-color);
}

@media all and (max-width: 1024px){
    #service_area .contents_in{
        flex-direction: column;
        gap: 20px;
    }
    .service_text_g{
        max-width: none;
        width: 100%;
    }
    .service_text_g::before{
        top: -180px;
        left: -400px;
        transform: none;
    }
    .service_text_g.rotation::before{
        animation: Rotation linear 24s infinite;
    }
    .service_cnt_g{
        width: 100%;
        max-width: none;
    }
}

@media all and (max-width: 767px){
    .service_text_g::before{
        left: -520px;
    }
    .service_cnt_box{
        padding: 24px 20px 24px 20px;
    }
    .service_cnt_box h3{
        font-size: 18px;
    }
    .service_cnt_box p{
        font-size: 14px;
    }
    .service_cnt_box .btn_style01{
        display: block;
        margin: 0 auto 10px;
    }
    .service_cnt_box .btn_style01 a{
        font-size: 15px;
    }
    .service_cnt_box::after{
        width: clamp(120px, 42%, 180px);
        top: -15%;
        right: -6%;
    }

}




/*============= ABOUT =============*/
#about_area{
    display: block;
    position: relative;
    background: url(../images/top/bg_about_pc.webp) no-repeat top center;
    background-size: cover;
}
#about_area::before{
    content: '';
    display: block;
    width: 100%;
    height: 80px;
    background-color: var(--color-sub-blue);
    mask-image: url(../images/common/bg_section_pc.png);
    mask-size: 100% 100%;
    mask-repeat: no-repeat;
    mask-position: 0 0;
    position: absolute;
    top: -79px;
    left: 0;
}
#about_area .contents_in{
    display: flex;
    align-items: center;
    gap: 80px;
}
.about_text_g, 
.about_img_g{
    max-width: 460px;
    width: 50%;
}
.about_img_g .about_img{
    margin-bottom: 10px;
    transition: .8s ease;
	transform: translateX(30px);
	opacity: 0;
}
.about_img_g .about_img:nth-child(1){ transition-delay: .4s; }
.about_img_g .about_img:nth-child(2){ transition-delay: .6s; }
.about_img_g .about_img:nth-child(3){ transition-delay: .8s; }
.about_img_g.appear .about_img{
    transform: translateY(0px);
	opacity: 1;
}

#about_area .h2_style01, #about_area .h2_en, #about_area p{
    color: #fff;
}


@media all and (max-width: 1024px){
    #about_area .contents_in{
        gap: 4%;
    }
}

@media all and (max-width: 767px){
    #about_area{
        background-image: url(../images/top/bg_about_sp.webp);
    }
    #about_area::before{
        mask-image: url(../images/common/bg_section_sp.png);
        height: 40px;
        top: -39px;
    }
    #about_area .contents_in{
        flex-direction: column;
        gap: 30px;
    }
    .about_text_g, .about_img_g{
        width: 100%;
        max-width: none;
    }
    .about_text_g .btn_style01{
        margin: 0 auto;
    }
}

/*============= NEWS =============*/
#news_area{
    display: block;
    position: relative;
}
#news_area::before{
    content: '';
    display: block;
    width: 100%;
    height: 80px;
    background-color: #f7f7f7;
    mask-image: url(../images/common/bg_section_pc.png);
    mask-size: 100% 100%;
    mask-repeat: no-repeat;
    mask-position: 0 0;
    position: absolute;
    top: -79px;
    left: 0;
}
.news_title_g{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto 20px;
}
#news_area .h2_style01{
    margin: 0;
}
#news_area .h2_style01 .h2_en{
    font-size: 30px;
}


@media all and (max-width: 1024px){

}

@media all and (max-width: 767px){
    #news_area::before{
        mask-image: url(../images/common/bg_section_sp.png);
        height: 40px;
        top: -39px;
    }
    #news_area .h2_style01 .h2_en{
        font-size: 24px;
    }
}
