@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Teko:wght@700&display=swap');

/*
	font-family: 'Teko', sans-serif;
*/

/*-------------------------------------

reset

-------------------------------------*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html,body {
  height: 100%;
}
ol, ul {
	list-style: none;
}
button{
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
}
body {
	font-family: 'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','YuGothic','Yu Gothic','メイリオ', 'Meiryo','ＭＳ ゴシック',sans-serif;
	font-size: 14px;
	line-height: 1.75;
	letter-spacing: 0.05em;
	height: 100%;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	font-feature-settings: "palt";
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
em {
	font-style: normal;
	font-weight: bold;
}
a:link {
	text-decoration: none;
	color: #000;
	transition: 0.2s;
}
a:visited {
	color: #000;
}

.sp {
	display: none;
}
@media screen and (max-width: 736px) {
	.pc {
		display: none!important;
	}
	.sp {
		display: block;
	}
}



