@charset "utf-8";
/* CSS Document */
/*=================
howto
=================*/
.howto{
	padding: 40px;
	background-color: #fcffee;
	margin: 0 auto 70px;
}
.howto ul{
	background: url("../img/border.gif") repeat;
	display: flex;
}
.howto li{
	padding: 20px 27px;
	width: 50%;
	font-size: 18px;
}
.howto li:first-child{
	position: relative;
}
.howto li:first-child::after{
	content: "";
	background-color: #365cb2;
	display: inline-block;
	width: 2px;
	height: calc( 100% - 60px );
	position: absolute;
    top: 50%;
    right: -1px;
    transform: translateY(-50%);
}
.howto em{
	display: block;
	color: #234083;
	background-color: #f7dc7d;
	padding: 6px;
	margin: 0 auto 20px;
}
@media screen and (max-width: 750px){
	.howto{
		padding: 20px;
		margin: 0 auto 40px;
	}
	.howto ul{flex-direction: column;}
	.howto li{
		padding: 10px 20px;
		width: 100%;
	}
	.howto li:first-child::after{display: none;}
	.howto em{margin: 0 auto 10px;}
}
/*=================
papercraft_box
=================*/
.papercraft_box:not(:last-child){margin-bottom: 100px;}
.papercraft_box h4{
	padding: 9px 55px;
	
	font-size: 36px;
	color: #fff;
	background-color: #234083;
	display: inline-block;
	position: absolute;
	top: -47px;
	left: 50%;
	transform: translateX(-50%) rotate(-3deg);
}
.papercraft_box>img{
	margin-bottom: 60px;
}
.papercraft_box>div{
	background: url("../img/bg.gif") repeat;
	position: relative;
	padding: 75px 100px 50px;
}
.hard{
	
	margin-bottom: 30px;
}
.hard span{
	vertical-align: bottom;
	color: #234083;
	margin-right: 15px;
	font-size: 18px;
	font-weight: 600;
}
.papercraft_box p{
	margin: 0 auto 30px;
	font-size: 16px;
	font-weight: 400;
}
.btns{
	display: flex;
	column-gap: 20px;
	justify-content: center;
}
.papercraft_box a{
	color: #fcffee;
	padding: 20px;
	display: block;
	width: 290px;
	position: relative;
	border-radius: 5px;
	background-color: #f36938;
	transition: .3s all;
	text-decoration:none;
}
.papercraft_box a:hover{
	transform: scale(1.1,1.1);
	
}
.papercraft_box a::after{
	content: "▶";
	color: #fcffee;
	position: absolute;
	right: 20px;
}
.papercraft .blue{
	background-color:#2379c2;
}
@media screen and (max-width: 750px){
	.papercraft_box:not(:last-child){margin-bottom: 50px;}
	.papercraft_box h4{
		padding: 9px 20px;
		font-size: 24px;
		top: -25px;
		left: 50%;
	}
	.papercraft_box>img{margin-bottom: 30px;}
	.papercraft_box>div{padding: 45px 20px 20px;}
	.hard{margin-bottom: 20px;}
	.hard span{
		display: block;
		margin-right: 0;
		font-size: 18px;
	}
	.papercraft_box p{
		margin: 0 auto 20px;
		font-size: 16px;
	}
	.btns{
		flex-direction: column;
		row-gap: 20px;
		align-items: center;
	}
	.papercraft_box a{
		color: #fcffee;
		padding: 20px;
		max-width: 290px;
		width: 90%;
	}
	.papercraft_box a::after{
		content: "▶";
		color: #fcffee;
		position: absolute;
		right: 20px;
	}
}