@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%;
    overflow: hidden;
}
.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 #536C40;
    pointer-events: none;
}
.flow_wrap .item:last-child .col-num::before{
    display: none;
}
.flow_wrap .circle{
    width: 65px;
    height: 65px;
    border-radius: 999px;
	border: #536C40 1px solid;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.flow_wrap .circle p{
    letter-spacing: 0.1em;
	line-height: 1;
}
.flow_wrap .more_wrap{
	gap: 20px;
}



.pagelinks_a .jp{
    background-color: #DDD6CC;
    color: #2B2A27;
}
.pagelinks_a .tab-wrap:hover .jp{
    background-color: #536C40;
	color: #fff;
}
.pagelinks_a .tab-wrap {
    cursor: pointer;
}
.pagelinks_a .tab-wrap.active p {
    color: #fff;
	background-color: #536C40;
}
.worries_a .icon{
  background:#536C40;
}
.worries_a .side_line{
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	color: #536C40;
	letter-spacing: 0.18em;
}
.worries_a .side_line::before,
.worries_a .side_line::after{
	content: "";
	display: block;
	width: 45px;
	height: 1px;
	background-color: #536C40;
}
.worries_a .item{
  display:flex;
  align-items:center;
  gap: clamp(12px, 2.5vw, 20px);
  background:#fff;
  border-radius:2px;
  padding: clamp(12px, 2.2vw, 16px) clamp(16px, 3vw, 24px);
  box-shadow: none;
}
/* ---------- cate1 ---------- */
.cate1 .box_wrap{
	gap: 40px;
	align-items: flex-start;
}
.cate1 .box_wrap .imgbox{
	width: calc(50% - 20px);
}
.cate1 .box_wrap .txtbox{
	width: calc(50% - 20px);
	align-items: flex-start;
	flex-direction: column;
	gap: 30px;
}
.cate1 .box_wrap .txtbox .txtitem{
	flex-direction: column;
	gap: 20px;
	background-color: #fff;
	padding: 40px 30px;
	width: 100%;
	align-items: flex-start;
}
.cate1 .box_wrap .txtbox .txtitem .topbox{
	gap: 15px;
	justify-content: flex-start;
	width: 100%;
}

/* ---------- cate2 ---------- */
.cate2 .box_wrap{
	gap: 30px;
	width: 100%;
}
.cate2 .box_wrap .boxitem{
	gap: 15px;
	flex-direction: column;
	padding: 20px;
	background-color: #fff;
	width: calc((100% - 60px)/3);
	align-items: flex-start;
}
.cate2 .box_wrap .boxitem .txtbox{
	gap: 10px;
	flex-direction: column;
	align-items: flex-start;
}
.cate2 .box_wrap .boxitem .txtbox .topbox{
	gap: 15px;
}
.cate2 .box_wrap .boxitem .txtbox .topbox .price span{
	font-size: clamp(14px, 1.1vw, 16px);
}

.cate2 .box_wrap2 .boxitem{
	gap: 15px;
	flex-direction: column;
	padding: 20px;
	background-color: #fff;
	width: calc((100% - 60px)/2);
	align-items: flex-start;
}
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){
	.cate1 .box_wrap {
		flex-direction: column;
		align-items: center;
	}
	.cate1 .box_wrap .imgbox {
		width: 60%;
		aspect-ratio: 4 / 3;
		overflow: hidden;
	}
	.cate1 .box_wrap .txtbox {
		width: 60%;
	}
	.cate2 .box_wrap .boxitem{
		width: calc((100% - 30px)/2);
	}
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
	.cate1 .box_wrap .imgbox {
		width: 80%;
	}
	.cate1 .box_wrap .txtbox {
		width: 80%;
	}
	.cate2 .box_wrap .boxitem{
		width: 80%;
	}
	.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;
    }
}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
	.worries_a .icon {
		width: 34px;
		height: 34px;
	}
	.cate1 .box_wrap .imgbox {
		width: 100%;
	}
	.cate1 .box_wrap .txtbox {
		width: 100%;
		gap: 20px;
	}
	.cate1 .box_wrap .txtbox .txtitem {
		gap: 15px;
		padding: 30px 20px;
	}
	.cate1 .box_wrap {
		gap: 20px;
	}
	.cate2 .box_wrap .boxitem{
		width: 100%;
	}
	.cate2 .box_wrap .boxitem .txtbox {
		gap: 5px;
	}
	.flow_wrap .txtbox {
		gap: 10px;
	}
	.flow_wrap .circle {
		width: 50px;
		height:50px;
	}
    .flow_wrap .item {
        padding-bottom: 30px;
    }
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}

