@charset "utf-8";
/* CSS Document */
.flow_wrap .txtbox{
   flex-direction: column;
	gap: 20px;
	align-items: flex-start;
}
.flow_wrap .item{
    display: grid;
    grid-template-columns: clamp(260px, 32vw, 400px) 72px 1fr;
    column-gap: clamp(16px, 3vw, 40px);
    position: relative;
    padding-bottom: 60px;
    width: 100%;
}
.flow_wrap .item:last-child{
    padding-bottom: 0;
}
.flow_wrap .imgbox{
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 20px;
}
.flow_wrap .imgbox img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.flow_wrap .col-num{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.flow_wrap .col-num::before{
    content: "";
    position: absolute;
    left: 50%;
    top: 72px;
    bottom: 0px;
    transform: translateX(-50%);
    width: 0;
    border-left: 2px dotted #C1C0C0;
    pointer-events: none;
}
.flow_wrap .item:last-child .col-num::before{
    display: none;
}
.flow_wrap .circle{
    width: 65px;
    height: 65px;
    border-radius: 999px;
    background-color: #C5DB19;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.flow_wrap .circle p{
    margin: 0;
    line-height: 1.2;
    font-family: "Jost",  sans-serif;
    color: #fff;
}
.flow_wrap .circle p:first-child{
    font-size: 10px;
}
.flow_wrap .more_wrap{
	gap: 20px;
}

.cate2{
    position: relative;
    overflow: visible;
}
.cate2 .titlebox2,
.cate2 .faq_wrap{
    position: relative;
    z-index: 1;
}
.cate2::before{
    content: "";
    position: absolute;
    right: 10%;
    top: 20%;
    width: clamp(80px, 10vw, 150px);
    height: clamp(80px, 10vw, 150px);
    background: url(https://peacebodycare.com/system_panel/uploads/images/guide_deco1.png) no-repeat center / contain;
    z-index: 0;
    pointer-events: none;
}
.cate2::after{
    content: "";
    position: absolute;
    left: 10%;
    bottom: 5%;
    width: clamp(70px, 9vw, 160px);
    height: clamp(70px, 9vw, 160px);
    background: url(https://peacebodycare.com/system_panel/uploads/images/guide_deco2.png) no-repeat center / contain;
    z-index: 0;
    pointer-events: none;
}
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){

}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
   .flow_wrap .item{
        grid-template-columns: 1fr;
        grid-template-areas:
            "col"
            "imgbox"
            "txtbox";
        gap: 16px;
        padding-bottom: 50px;
        max-width: 500px;
        margin: 0 auto;
    }

    .flow_wrap .col-num{
        grid-area: col;
        justify-content: flex-start;
    }

    .flow_wrap .imgbox{
        grid-area: imgbox;
    }

    .flow_wrap .txtbox{
        grid-area: txtbox;
        margin-top: 0;
    }

    .flow_wrap .col-num::before{
        display: none;
    }
	.cate2::before,
	.cate2::after{
		display: none;
	}
}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
	.flow_wrap .imgbox {
		border-radius: 10px;
	}
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}

