@charset "utf-8";

/*-------------------------
CSS変数
---------------------------*/
/* color */
:root {
	--color-point: #d10012;
}
/* font */
:root {
	--font-default: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	--font-point: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	--font-n: 16px;
	--font-s: calc(var(--font-n) * .88); /* 14 */
	--font-m: calc(var(--font-n) * 1.25); /* 20 */
	--font-l: calc(var(--font-n) * 2); /* 32 */
}

/*-------------------------
reset
---------------------------*/
*,
*::before,
*::after {
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
html {
	-webkit-text-size-adjust: 100%;
	width: 100vw;
}
body, input, textarea {
	font-family: var(--font-default);
}
body {
	background-color: #fff;
	width: 100vw;
	color: #000;
	font-size: var(--font-n);
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
	line-height: 1.75;
	margin: 0;
	position: relative;
	overflow-x: hidden;
	overflow-y: auto;
}
img,a,ul,li,iframe,fieldset {
	border: none;
	outline: none;
}
img {
	line-height: 0;
}
a {
	color: var(--color-text);
	text-decoration: none;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}
h1,h2,h3,h4,ol,ul,li,dl,dt,dd,p,figure,from,iframe,fieldset,legend {
	margin: 0;
	padding: 0;
}
ol,ul {
	list-style: none;
}
h1,h2,h3,h4 {
	font-size: 100%;
	font-weight: normal;
}
em {
	font-style: normal;
}
article,aside,footer,header,main,nav,section {
	display: block;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
	display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
	outline-offset: -2px;
}