@charset "UTF-8";

/*==== リセット
===============================================================*/
*,
*:before,
*:after {
	box-sizing: border-box;
	image-rendering: -webkit-optimize-contrast;
}

body {
	margin: 0;
	padding: 0;
	color: #222;
	font-size: 16px;
	line-height: 1.8;
	word-wrap: break-word;
	overflow-wrap: break-word;
	background: #fff;
	font-family: 'Noto Sans JP', sans-serif;
	-webkit-text-size-adjust: 100%;
	-webkit-animation: opacity 0.7s both;
	animation: opacity 0.7s both;
}

body.js-fixed {
	overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 16px;
	margin: 0;
}

p {
	margin: 0;
	padding: 0;
}

th,
td {
	margin: 0;
	padding: 1em;
}

dl,
dt,
dd {
	margin: 0;
}

ul,
ol {
	list-style: none;
	padding: 0;
	margin: 0;
}

i,
cite,
em,
var,
address,
dfn {
	font-style: normal;
}

figure {
	margin: 0;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

table {
	margin: 0;
	width: 100%;
	border-collapse: collapse;
}

a {
	color: #222;
	text-decoration: none;
	-webkit-tap-highlight-color: transparent;
	transition:
		opacity 0.3s,
		color 0.3s,
		border 0.3s,
		background 0.3s;
}

a img {
	border: none;
	transition: opacity 0.3s;
}

a:hover {
	opacity: 0.7;
	text-decoration: none;
}

:focus {
	outline: none;
	text-decoration: none;
}

input::-moz-focus-inner {
	border: 0px;
}

input {
	border-radius: 0;
}

input,
button,
textarea,
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding: 0;
	margin: 0;
	border: 0;
	outline: none;
	max-width: none;
	font-family: inherit;
	background: none;
}

button {
	cursor: pointer;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="text"],
input[type="button"],
input[type="search"],
button {
	border-radius: 0;
	-webkit-appearance: button;
	-moz-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
}

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

input:-webkit-autofill {
	box-shadow: 0 0 0 1000px white inset;
}

@media screen and (max-width:1023px) {
	::-webkit-scrollbar {
		display: none;
	}
}