@charset "UTF-8";

* {
	margin: 0;
	padding: 0;
}

*,*:before,*:after {
	box-sizing: border-box;
}

*:focus {
	outline: none;
}

body,button,input,select,textarea,h1,h2,h3,h4,h5 {
	font-family: "Inter", "Noto Sans JP", sans-serif;
	color: #333;
	font-size: 18px;
	font-weight: normal;
	font-feature-settings: "palt";
	letter-spacing: .08em;
	line-height: 1.8;
	word-break: break-all;
}

a {
	text-decoration: none;
	color: #333;
}

li {
	list-style-type: none;
}

img {
	max-width: 100%;
}

@media (min-width:768px){
	.sp_only {
		display: none;
	}

	a:hover,
	a:hover img {
		opacity: 0.8;
		transition: all .3s;
	}
}

@media screen and (max-width:767px){
	body,button,input,select,textarea,h1,h2,h3,h4,h5 {
		font-size: 15px;
	}

	.pc_only {
		display: none;
	}
}


