/*----------------------------------------*\
 * COMMON
 * 全ページ共通CSS
\*----------------------------------------*/
body{
	display: none;
}
html,
body {
    width: 100%;
    height: 100%;
}

/* body color and font*/
body {background-color: #FFF;}
body {color: #222;}


body,
body * {
	/*font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;*/
	/*font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;*/
	font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic",Arial, sans-serif;
	text-decoration: none;
	font-weight: lighter;
}


html,
body {
    background-image: url("../img/bg/001-Basik-Paper.png")
}



/*------------------------------------*\
 * Media Queries
\*------------------------------------*/

/* Larger than mobile */

@media (min-width: 400px) {}


/* Larger than phablet (also point when grid becomes active) */

@media (min-width: 550px) {}


/* Larger than tablet */

@media (min-width: 750px) {}


/* Larger than desktop */

@media (min-width: 1000px) {}


/* Larger than Desktop HD */

@media (min-width: 1200px) {}


/*------------------------------------*\
 #COMMON-SECTION
\*------------------------------------*/

.box-center {
    margin: 0 auto;
}

.align-center {
    text-align: center;
}

.spacer50 {
    height: 50px;
}

.text-center {
    text-align: center;
}

.gray {
    color: #777;
}


/*------------------------------------*\
 #COMMON-SECTION
\*------------------------------------*/

.in {
    position: relative;
    width: 100%;
    height: 100%;
}

.table {
    display: table;
}

.cell {
    display: table-cell;
    vertical-align: middle;
}


/*----------------------------------------*\
 * FOOTER トップページ用 & SNS用は下に固定
\*----------------------------------------*/
.top-footer footer {
    position: absolute;
    bottom: calc(0% + 10px);
    left: 0;
    width: 100%;
    height: 30px;
    z-index: 10;
}

/*----------------------------------------*\
 * FOOTER INNER
\*----------------------------------------*/
div.footer {
	/*0px以上(550px以下)はセンターそ揃え*/
    text-align: center;
    font-size: small;
}


/*リンク要素の色を黒に変更*/
div.footer *,
div.footer a,
div.footer a:link,
div.footer a:visited,
div.footer a:hover { color: #555; }


