@charset "utf-8";
/* CSS Document */

/*---------------------------------------------
	Default CSS Initialization
  ---------------------------------------------*/
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, 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-style:normal;
	font-weight: normal;
	font-size: 100%;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

html{
    overflow-y: scroll;
}

* {
	word-break: break-all;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

input, textarea,{
	margin: 0;
	padding: 0;
}

ol, ul{
    list-style:none;
}

table{
	width:100%;
    border-collapse: collapse; 
    border-spacing:0;
}
caption, th{
    text-align: left;
}

img {
	vertical-align: bottom;
	-ms-interpolation-mode: bicubic;
	max-width:100% !important;
	height:auto !important;
}
a img:hover {
	filter: alpha(opacity=75);
	-moz-opacity:0.75;
	opacity:0.75;
}

a,a:hover {
	-webkit-transition: 0.7s;
	-moz-transition: 0.7s;
	-o-transition: 0.7s;
	transition: 0.7s;
	cursor:pointer;
}
a:focus {
	outline:none;
}



/*---------------------------------------------
	clearfix -micro clearfix-
  ---------------------------------------------*/
/* For modern browsers */
.cf:before,
.cf:after {
    content:"";
    display:table;
}
 
.cf:after {
    clear:both;
}
 
/* For IE 6/7 (trigger hasLayout) */
.cf {
    zoom:1;
}

.both{
	clear:both;
}

/*---------------------------------------------
	body
  ---------------------------------------------*/
body {
	font: 100%/1.4 "メイリオ","Meiryo","ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","ＭＳ Ｐゴシック","MS PGothic",Sans-Serif;
	color: #333;
	text-align: left;
	-webkit-text-size-adjust: none;
	background:#fff url(../images/contents_bg01.jpg) repeat;
}



/*---------------------------------------------
	Anchor
  ---------------------------------------------*/
a {
	outline: none;
}
a:link {
	color: #0099ff;
	text-decoration: underline;
}
a:visited {
	color: #0099ff;
	text-decoration: underline;
}
a:hover, a:active, a:focus {
	color: #6cc4ff;
	text-decoration: none;
}

/*---------------------------------------------
	ページトップ scrollUp.js
  ---------------------------------------------*/
#scrollUp {
	bottom: 50px;
	right: 50px;
	height: 56px;  /* Height of image */
	width: 56px; /* Width of image */
	/*background: url(../images/top.png) no-repeat;*/
}

/*---------------------------------------------
	スマホ対応リセット
  ---------------------------------------------*/
@media screen and (max-width: 641px){
	.contents div{
		width: 100%;
		margin: 0 0 24px;
		float: none;
	}
}

/*---------------------------------------------
	スマホ対応汎用型
  ---------------------------------------------*/
.no_pc{
	display:none;
}
.no_sp{
	display: inline-block;
}
@media screen and (max-width: 641px) {
	.no_sp{
		display: none;
	}
	.no_pc{
		display:inline-block;
	}
}

html, body, .contents {
    height: 100%;
}

.contents {
    width:100%;
    text-align: center;
    display: flex;
    justify-content:center;
    align-items: center;
    position: absolute;
}

.contents img {
    animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
}
.text {
  top: 85%;
  position: relative;
  height: auto;
}
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
footer {
     position: relative;
     bottom: -95%;}
footer p {font-size:11px; text-align:center;}
