@charset "UTF-8";
/*---------------------------------
base&reset
---------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
input,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 300;
	font-style: normal;
	font-size: 10px;
/* 	font-size: 62.5%; */
	line-height: 1.5;
	color: #FFF;
	word-wrap: break-word;
}

html {
	overflow-y: scroll;
	overflow-x: hidden;
	scroll-behavior: smooth;
}

ol,
ul {
	list-style: none;
}

a {
	text-decoration: none;
	cursor: pointer;
	transition: all 0.5s;
}

img {
	width: 100%;
	vertical-align: middle;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

p {
font-size:1.4rem;	
}

*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

::selection{
	background-color: #d7d7d7;
	color:414141;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	-moz-appearance: button;
	appearance: button;
	border: none;
	-webkit-box-sizing: border-box;
	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;
}

/* Mac Safariでのデフォルトスタイルをリセット */
input, select {
  -webkit-appearance: none;
  appearance: none;
}
/*---------------------------------
container
---------------------------------*/
.container {
	overflow: hidden;
}

/*---------------------------------
section
---------------------------------*/
@media screen and (min-width: 961px) {
	.section_mt {
		margin-top: 40px;
	}
}

@media screen and (max-width: 960px) {
	.section_mt {
		margin-top: 20px;
	}
}

@media screen and (min-width: 961px) {
	.section_mb {
		margin-bottom: 40px;
	}
}

@media screen and (max-width: 960px) {
	.section_mb {
		margin-bottom: 30px;
	}
}

.section_login {
	padding-top: 50px;
}

/*---------------------------------
inner
---------------------------------*/
.inner {
	max-width: 1280px;
	margin: 0 auto;
}

@media screen and (min-width: 961px) {
	.inner {
		padding-left: 60px;
		padding-right: 60px;
	}
}

@media screen and (max-width: 960px) {
	.inner {
		padding-left: 30px;
		padding-right: 30px;
	}
}

/*---------------------------------
h2
---------------------------------*/
h2 {
	font-size: 1.8rem;
	font-weight: bold;
}

@media screen and (min-width: 961px) {
	h2 {
		font-size: 2.4rem;
		margin-bottom: 30px;
	}
}

@media screen and (max-width: 960px) {
	h2 {
		margin-bottom: 15px;
	}
}

/*---------------------------------
only
---------------------------------*/
.sp-only {
	display: none;
}

@media screen and (max-width: 960px) {
	.sp-only {
		display: block;
	}
}

.pc-only {
	display: block;
}

@media screen and (max-width: 960px) {
	.pc-only {
		display: none !important;
	}
}
/*# sourceMappingURL=common.css.map */