/*
Theme Name: Sake en theme
Author: webs
Author URI: http://webs.unc.jp
Description: Sake en theme
*/

@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP&family=Poppins:wght@300;400&family=EB+Garamond:wght@400;500&display=swap");

*,
*::before,
*::after {
	margin:0;
	padding:0;
	box-sizing:border-box;
}
html {
	font-size:15px;
}
body {
	font-family: "Noto Sans JP", sans-serif;
	line-height: 1.6;
	color:#000;
}
li {
	list-style:none;
}
a {
	color:#000;
}
@media screen and (max-width:1000px){
	html {
		font-size:1.5vw;
	}
}
@media screen and (max-width:768px){
	.pconly{
		display:none;
	}
	html {
		font-size:2.8vw;
	}
}
@media screen and (min-width:769px){
	.sponly{
		display:none;
	}
}

img {
	display:block;
	max-width:100%;
}