@charset "utf-8";

/*-------------------------
CSS変数
---------------------------*/
/* font */
:root {
	--font-default: "Helvetica Neue", Helvetica, Arial, "Noto Sans CJK jp", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

/*-------------------------
reset
---------------------------*/
.rev3 *,
.rev3 *::before,
.rev3 *::after {
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

html {
	-webkit-text-size-adjust: 100%;
	width: 100vw;
}

body.rev3,
input,
textarea {
	font-family: var(--font-default);
}

body.rev3 {
	background-color: #fff;
	width: 100vw;
	color: #000;
	font-size: 14px;
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
	line-height: 1.75;
	margin: 0;
	position: relative;
	overflow-x: hidden;
	overflow-y: auto;
}

body {
	overflow-x: hidden;
	overflow-y: auto;
}

img,
a,
ul,
li,
iframe,
fieldset {
	border: none;
	outline: none;
}

img {
	line-height: 0;
}

a {
	color: #000;
	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;
}

aside {
	font-size: .85em;
}

/* 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;
}

@media screen and (max-width: 800px) {
	header {
		height: 165px !important;
		padding-top: 0;
	}
}