@charset "utf-8";
/* =Reset default browser CSS.
Based on work by Eric Meyer: http://meyerweb.com/eric/tools/css/reset/index.html

-------------------------------------------------------------- */
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, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}
:focus {
	outline: 0;
}
ol, ul {
	list-style: none;
}
table {
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	font-weight: normal;
	text-align: left;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}
a img {
	border: 0;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	font-size:16px;
	color:#000000;
	line-height:1.5;
	font-family: Shuei Mincho L;
	-webkit-text-size-adjust: 100%;
	line-height: 2;
	letter-spacing: .2em;
}



/* リンク設定
------------------------------------------------------------*/
a {
	margin:0;
	padding:0;
	text-decoration:none;
	outline:0;
	vertical-align:baseline;
	background:transparent;
	color:#000;
}
a:hover, a:active, a:visited {
	outline: none;
	color:#000;
	text-decoration:none;
}
article a, article a:hover, article a:active, article a:visited {
	text-decoration:underline;
	color:#6c2f8d;
}
a:hover, a:hover img {
	opacity:0.7;
}
h1 a:hover img {
	opacity:1.0!important;
}
img {
	vertical-align:bottom
}



/*clearfix*/
.clear {
	clear:both;
}
.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
.clearfix {
	min-height: 1%;
	overflow:hidden;
}




/* レイアウト
------------------------------------------------------------*/
#container {
	width: 100%;
	height: 100vh;
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	/* 左右中央寄せ */
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;

	/* 上下中央寄せ */
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
#teaser {
	width: 100%;
	max-width: 750px;
	background-color: #fff;
	margin: 0 auto;
}
#teaser h1 {
	width: 100px;
	margin: 0 auto;
	padding: 0;
}
#teaser h2 {
	font-size: 24px;
	text-align: center;
	margin: 100px 0 100px 0;
	padding: 0;
}
#teaser p {
	font-size: 16px;
	text-align: center;
	margin: 0;
	padding: 0;
}

/* PC */
@media only screen and (min-width: 751px) {
	.pc-only {display:block;}
	.sp-only {display:none;}
}

/* SP */
@media only screen and (max-width: 750px) {
	.pc-only {display:none;}
	.sp-only {display:block;}
	
	#container {
		background-size: 10%;
	}
	
	#teaser {
		width: 80%;
	}
	
}




