@charset "utf-8";

/* howto_box */
.howto_box {
	align-items: center;
}
.howto_copy {
	width: 74%;
}
.howto_copy ._h {
	font-size: clamp(16px, 1.5vw, 18px);
	font-weight: normal;
	line-height: 1.6;
	margin-bottom: 1.5em;
}
.howto_img {
	width: 22%;
}
.howto_list {
	flex-wrap: wrap;
}
.howto_list > li {
	width: 32%;
}
.howto_list > li:nth-child(n+4) {
	margin-top: 1em;
}
.howto_list ._btn {
	display: block;
	text-decoration: none;
	background: linear-gradient(150deg, #FCE3A0 0%, #F8B502 100%);
	border: 2px solid #F8B502;
	border-radius: 6px;
	box-shadow: -1px -1px 0 rgba(0,0,0,.1) inset,
							1px 1px 0 rgba(255,255,255,.2) inset;
	color: #000;
	font-size: clamp(18px, 2vw, 20px);
	font-weight: bold;
	padding: .75em 2.5em .75em 1em;
	position: relative;
}
.howto_list ._btn::before,
.howto_list ._btn::after {
	content: "";
	position: absolute;
	top: 50%;
}
.howto_list ._btn::before {
	width: 1.2em;
	height: 1.2em;
	border-radius: 50%;
	background: #fff;
	right: 1em;
	transform: translateY(-50%);
}
.howto_list ._btn::after {
	width: .5em;
	height: .5em;
	border-top: 3px solid #F8B502;
	border-right: 3px solid #F8B502;
	right: 1.45em;
	transform: translateY(-50%) rotate(45deg);
}
.howto_list ._btn:hover {
	color: #000;
}



@media only screen and (max-width: 768px) {
	/* howto_box */
	.howto_box {
		align-items: center;
	}
	.howto_copy {
		width: 100%;
		order: 2;
	}
	.howto_copy ._h {
		font-size: clamp(14px, 1.5vw, 16px);
	}
	.howto_img {
		width: 40%;
		margin-bottom: 1em;
		order: 1;
	}
	.howto_list {
		flex-direction: row;
		justify-content: space-between;
	}
	.howto_list > li {
		width: 48%;
	}
	.howto_list > li:nth-child(n+3) {
		margin-top: 1em;
	}
	.howto_list ._btn {
		border-width: 1px;
		font-size: clamp(16px, 2vw, 18px);
		padding: .75em 1.5em .75em .5em;
	}
	.howto_list ._btn::before {
		right: .5em;
	}
	.howto_list ._btn::after {
		right: .9em;
	}
	
	
	
	
}
@media only screen and (min-width: 769px) {
	
}