@charset "utf-8";

/* reset */

.snkk_chocolate *{
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin-block-start:0;
	margin-block-end:0;
	margin-inline-start:0;
	margin-inline-end:0;
	overflow-wrap: anywhere;
	word-break: normal;
	line-break: strict;
}

.snkk_chocolate *::before,
.snkk_chocolate *::after{
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.snkk_chocolate h1,
.snkk_chocolate h2,
.snkk_chocolate h3,
.snkk_chocolate h4,
.snkk_chocolate h5,
.snkk_chocolate h6{
	font-size:1rem;
	font-weight:400;
	margin:0;
	padding:0;
	line-height:1.8;
}

.snkk_chocolate p{
	font-size:1rem;
	margin:0;
	padding:0;
	line-height:1.8;
}

.snkk_chocolate ul,
.snkk_chocolate ol{
	list-style:none;
	padding:0;
	margin:0;
}

.snkk_chocolate li{
	list-style-position: inside;
}

/* common */

.img-fluid{
	display:block;
	max-width:100%;
	width:100%;
	height:auto;
}

.flex-wrap{
	display: flex;
	flex-wrap: wrap;
}

/* display */

.pc-none{
	display:none;
}

@media (max-width: 768px) {

	/* display */

	.pc-none{
		display:block;
	}
	
	.sp-none{
		display:none;
	}

}