@charset "utf-8";
/* --------------------------------------------------------
	reset
-------------------------------------------------------- */

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td {
	margin: 0;
	padding: 0;
}
address,caption,cite,code,dfn,em,strong,th,var {
	font-style: normal;
}

body {
	color: #333333;
	font-size: 100%;
	font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN",verdana,"メイリオ", Meiryo, sans-serif;
	line-height: 1.7;
	background: url(null) fixed;
	background-color: #fff;
}

html {
	overflow-y: scroll;
}

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

article,aside,canvas,details,figcaption,figure,
footer,header,hgroup,menu,nav,section,summary { 
	display:block;
}
img {
	width:100%;
	max-width: 100%;
	height: auto;
	border: 0;
	vertical-align: bottom;
}
ul, ol {
	list-style: none;
}
table {
	border-spacing: 0;
	empty-cells: show;
}
a,a:link,a:visited,a:hover,a:active{
	color:#054691;
	text-decoration:none;
}

/* --------------------------------------------------------
	container
-------------------------------------------------------- */

.container {
	width: 100%;
	margin: 30px auto;
	text-align: center;
}

/* --------------------------------------------------------
	Parallax
-------------------------------------------------------- */

.container p {
	/*font-size: 200%;*/
	margin: 10px 0px;
}

.parallaxContainer {
	position: relative;
	/*height: 700px;*/
	overflow: hidden;
	text-align: center;
}

.parallaxContainer p {
	position: absolute;
	color: #fff;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	margin:0;
	padding: 10px 30px 10px;
	/*background : rgba(0,0,0,0.5);*/
}

@media screen and (max-width: 959px) {
	.parallaxContainer {
		height: auto;
	}
	.parallaxContainer p {
		font-size: 120%;
		padding: 10px;
	}
}