@charset "utf-8";

/* !Reseting
---------------------------------------------------------- */
html {
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%; /* iOS 8+ */
}
*, *:before, *:after {
  box-sizing: border-box;
}
header, footer, nav, main, section, aside, article {
	display: block;
}
body {
	color: #333333;
	font-family: -apple-system, BlinkMacSystemFont, YuGothic,'Yu Gothic','Hiragino Kaku Gothic ProN', sans-serif;
	-webkit-text-size-adjust: none;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.8;
}
	_:lang(x)::-ms-backdrop, body {
		font-family: "メイリオ", Meiryo, sans-serif;
	}
body, div, pre, p, blockquote, dl, dt, dd, ul, ol, li, th, td,
h1, h2, h3, h4, h5, h6,
form, figure, figcaption, fieldset, legend, textarea, pre, iframe, hr
{ margin: 0; padding: 0;}
h1, h2, h3, h4, h5, h6
{ font-size: 1rem; font-weight: normal;}
ul
{ list-style: none;}
input, select, textarea
{ margin: 0; font-size: 1rem; vertical-align: middle; -webkit-appearance: none; -moz-appearance: none; appearance: none; border: none; outline: none;
}
select::-ms-expand { display: none;}
button
{ padding: 0; border: 0; cursor: pointer; background: transparent;}
label
{ cursor: pointer;}
table
{ border-collapse: collapse; border-spacing: 0; font-size: 1rem;}
fieldset, img
{ border: 0;}
img
{ max-width: 100%; height: auto; vertical-align: top;}
address, caption, cite, code, dfn, em, th, var
{ font-style: normal; font-weight: normal;}
caption, th
{ text-align: left;}
q:after, q:before
{ content:'';}
abbr
{ border: 0;}

body {
	display: flex;
    flex-direction: column;
    min-height: 100vh;
	background: #8ca0af;
	text-align: center;
}
#wrapper {
	padding: 8%;
}
.content {
	position: relative;
	width: 100%;
	background: #ffffff;
}
.content::before {
    display: block;
    padding-top: 100%;
    content:"";
}
.cont_wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: calc(100% - 16px);
	height: calc(100% - 16px);
	margin: 8px
}
.inner {
	height: 100%;
	border: 4px solid #8ca0af;
}
.pc {
	display: none;
}


header {
}
.hd_logo {
	width: 20%;
	margin: calc(20%*0.25);
}
h1 {
	width: 72%;
    margin: 12% auto;
}
.txt_info {
	background: #8ca0af;
	color: #ffffff;
	font-size: 87.5%;
}
#ft_wrap {
	margin: auto 0 0;
	padding: 40px 0 0;
}
footer {
	padding: 10px 0 10px 0;
	border-top: 1px solid #ffffff;
	color: #ffffff;
}
footer small {
	font-size: 0.75rem;
}




@media screen and (min-width: 768px) {
	#wrapper {
		padding: 0;
	}
	.content {
		width: 480px;
		height: 480px;
		margin: 40px auto 0;
	}
	.cont_wrap {
	}
	.hd_logo {
		width: 100px;
	}
	h1 {
		width: 316px;
	}
	.txt_info {
		font-size: 100%;
	}
}




