@charset "utf-8";
/* CSS Document */
.box_wrap{
	justify-content: flex-start;
	align-items: flex-start;
	gap: 60px;
}
.box_wrap .box{
	width: calc(100% / 3 - 120px / 3);
}
.box_wrap .box .imgbox,.clone_box .imgbox{
	position: relative;
}
.box_wrap .box .imgbox .square-img,.clone_box .imgbox .imgitem{
	border-radius: 15px;
	border: 5px solid #E6DEB6; 
	overflow: hidden;
}
.imgbox .numbox{
	position: absolute;
	width: 120px;
	top: 0;
	left: 0;
	transform: translate(-50%,-50%);
	line-height: 1;
}
.imgbox .numbox .numtxt{
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	text-align: center;
	transform: translateY(-50%) rotate(-15deg);
}
.imgbox .numbox .numtxt p{
	line-height: 1.2;
}
body:not(.on) .box_wrap .box{
	width: 100%;
	display:-webkit-box;
    display:-moz-box;
    display:-ms-box;
    display:-webkit-flexbox;
    display:-moz-flexbox;
    display:-ms-flexbox;
    display:-webkit-flex;
    display:-moz-flex;
    display:-ms-flex;
    display:flex;
    -webkit-box-lines:multiple;
    -moz-box-lines:multiple;
    -webkit-flex-wrap:wrap;
    -moz-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
    justify-content: space-between;
    align-items: center;
	flex-direction: row;
}
body:not(.on) .box_wrap .box:not(:last-of-type){
	margin-bottom: 100px;
}
body:not(.on) .box_wrap .box > div{
	width: 45%;
}
body:not(.on) .box_wrap .box .popup_box{
	padding-top: 50px;
}
body:not(.on) .box_wrap .box .popup_box .txtbox{
	padding-left: 30px;
}
body.on .box_wrap .box .popup_box{
	display: none;
}

.clone_box{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
	background-color: rgba(0,0,0,0.50);
}
.clone_box .popup_box{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display:-webkit-box;
    display:-moz-box;
    display:-ms-box;
    display:-webkit-flexbox;
    display:-moz-flexbox;
    display:-ms-flexbox;
    display:-webkit-flex;
    display:-moz-flex;
    display:-ms-flex;
    display:flex;
    -webkit-box-lines:multiple;
    -moz-box-lines:multiple;
    -webkit-flex-wrap:wrap;
    -moz-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
    justify-content: center;
    align-items: center;
	flex-direction: row;
	overflow: auto;
	padding: 50px 100px;
}
.clone_box .popup_box > .flex{
	position: relative;
	max-width: 1280px;
	background-color: #FFFCED;
	padding: 100px;
	box-sizing: border-box;
	overflow: auto;
	border-radius: 20px;
}
.clone_box .popup_box .close-bt{
	position: absolute;
	top: 20px;
	right: 20px;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background-color: #FFE135;
	cursor: pointer;
	z-index: 999;
}
.clone_box .popup_box .close-bt::before,.clone_box .popup_box .close-bt::after{
	content: "";
	width: 26px;
	height: 2px;
	position: absolute;
	top: 50%;
	left: 50%;
	background-color: #514942;
}
.clone_box .popup_box .close-bt::before{
	transform: translate(-50%,-50%) rotate(45deg);
}
.clone_box .popup_box .close-bt::after{
	transform: translate(-50%,-50%) rotate(-45deg);
}
.clone_box .popup_box .txtbox{
	padding-left: 50px;
}
.clone_box .popup_box .txtbox .item_wrap .item:not(:last-of-type){
	margin-bottom: 30px;
}
.clone_box .popup_box .txtbox .item_wrap .item h4{
	border-left: 3px solid #9DC465;
	padding-left: 15px;
}
.clone_box .popup_box .bottom_box{
	margin-top: 50px;
}
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
	.imgbox .numbox{
		width: 100px;
	}

}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){
	.imgbox .numbox{
		width: 80px;
	}
	.clone_box .popup_box{
		padding: 50px;
	}
	.clone_box .popup_box > .flex{
		padding-bottom: 50px;
		padding-right: 50px;
		padding-left: 80px;
	}
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
	.box_wrap{
		justify-content: flex-start;
		align-items: flex-start;
		gap: 100px 50px;
	}
	.box_wrap .box{
		width: calc(100% / 2 - 50px / 2);
	}

}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
	.box_wrap{
		justify-content: center;
		align-items: center;
		gap: 80px;
	}
	.box_wrap .box{
		width: 100%;
	}
	.box_wrap .box .imgbox,.clone_box .imgbox{
		width: 80%!important;
		margin-left: auto;
		margin-right: auto;
	}
	.clone_box .imgbox{
		margin-top: 30px;
		margin-bottom: 30px;
	}
	.clone_box .popup_box{
		padding: 20px 20px;
	}
	.clone_box .popup_box > .flex{
		padding: 80px 20px 20px;
	}
	.clone_box .popup_box .close-bt{
		top: 10px;
		right: 10px;
		width: 50px;
		height: 50px;
	}
	.clone_box .popup_box .close-bt::before,.clone_box .popup_box .close-bt::after{
		width: 18px;
		height: 2px;
	}
	.clone_box .popup_box .txtbox{
		padding-left: 0;
	}

}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}

