@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/* ------------------------------
    reset
------------------------------ */

html {
	font-size: 62.5%;
	overflow-y: scroll;
}
*,
*::before,
*::after {
	box-sizing: border-box;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
address,
time,
ul,
ol,
li,
dl,
dt,
dd,
table,
th,
td,
img,
form,
input,
button,
textarea,
select {
	margin: 0;
	padding: 0;
	border: none;
	line-height: 100%;
	list-style-type: none;
	font-style: normal;
	font-weight: normal;
	font-family: "Noto Sans JP", sans-serif;
	word-wrap: break-word;
	overflow-wrap: break-word;
	word-break: break-all;
	-webkit-text-size-adjust: 100%;
	color: #595757;
	letter-spacing: 0.008em;
	line-break: strict;
}
input,
button,
textarea,
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: none;
	border-radius: 0;
	resize: none;
	outline: none;
	background: none;
}
select::-ms-expand {
	display: none;
}
button:hover {
	cursor: pointer;
}
/* a {
	color: #5e5e5e;
	text-decoration: none;
	transition: opacity 0.3s ease;
	outline: 1px solid transparent;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
a img {
	outline: 1px solid transparent;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
} */
/* a:hover {
	opacity: 0.6;
	cursor: pointer;
} */
img,
object {
	vertical-align: top;
	max-width: 100%;
	height: auto;
}

/* ------------------------------
    base
------------------------------ */

body {
	color: #5e5e5e;
	min-width: 1260px;
	font-size: 1rem;
	text-align: left;
}
section {
	position: relative;
}
main {
	display: block;
}
p,
th,
td,
dt,
dd,
li,
input,
button,
textarea {
	font-size: 1.4rem;
	line-height: 1.8;
}

@media screen and (max-width: 768px) {
	body {
		min-width: inherit;
	}
	p,
	th,
	td,
	dt,
	dd,
	li {
	}
	input,
	textarea,
	select,
	.select {
		font-size: 16px !important;
	}
}

/* ------------------------------
    responsive
------------------------------ */

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