@charset "utf-8";
/* Normalize CSS */
* {
	box-sizing: border-box;
}
html {
	font-family: sans-serif;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
body {
	margin: 0;
}
article,
footer,
header,
nav,
section {
	display: block;
}
[hidden] {
	display: none;
}
a {
	text-decoration: none;
	background-color: transparent;
	outline: none;
}
a:active,
a:hover {
	outline: 0;
}
h1,
h2,
h3,
h4,
p {
	margin: 0;
	padding: 0;
}
b,
strong {
	font-weight: bold;
}
ol, ul {
	margin: 0;
	padding:0;
	list-style: none;
}
img {
	border: 0;
	vertical-align: bottom;
}
svg:not(:root) {
	overflow: hidden;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
td,
th {
	padding: 0;
}

/*-------------------------
	PC
--------------------------*/
body {
	position: relative;
	height: 100vh;
	font-family: -apple-system, YuGothic, "Yu Gothic Medium", sans-serif;
	font-size: 18px;
	font-weight: 400;
	color: #333;
}
header {
	min-width: 1000px;
	height: 116px;
	padding: 25px 50px;
}
main {
	width: 1000px;
	margin: 0 auto;
	padding-bottom: 60px;
	text-align: center;
}
h1 {
	margin-top: 40px;
	font-family: YuMincho, 'Yu Mincho', serif;
	font-size: 50px;
}
.qr {
	margin: 100px auto;
	text-align: center;
}
.qr img {
	display: inline-block;
	margin-bottom: 10px;
	width: 150px;
	height: 150px;
}
.outline {
	display: inline-block;
	margin: 0 auto;
	text-align: left;
}
footer {
	position: fixed;
	bottom: 0;
	width: 100%;
	height: 36px;
	line-height: 36px;
	text-align: center;
	font-size: 12px;
	color: #bbb;
	background: #333;
}

/* -----------------------
	SP
----------------------- */
@media screen and (max-width: 767px) {
body {
	font-size: 15px;
}
header {
	min-width: auto;
	width: auto;
	height: 86px;
	padding: 10px;
}
main {
	min-width: auto;
	width: auto;
	padding-bottom: 50px;
}
h1 {
	font-size: 36px;
}
.qr {
	margin: 40px auto;
}
}