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

@charset "UTF-8";

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

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


img,
picture {
	display:block;
	max-width:100%;
	margin: 0 auto;
}