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


@media screen and (max-width:767px){


/* ローディング */

/* Loading背景画面設定　*/
#splash {
/*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100vh;
}


@keyframes fadeUpAnime{
  from {
    opacity: 1;
  transform: translateX(-400px);
  }

  to {
    opacity: 1;
  transform: translateX(400px);
  }
}


/* ページの先頭に戻る(すべてのページ) */

.pagetop {
    display: none;
    position: fixed;
    bottom: 65px;
    right: 5px;
	z-index:1000;
}
.pagetop a {
    display: block;
    text-align: center;
    text-decoration: none;
	filter:alpha(opacity=90);
    -moz-opacity: 0.9;
    opacity: 0.9;
}

.pagetop a img {
	width:46px;
}


/**********************************************************/
/* ベース部分 */
/**********************************************************/

body {
  font-size: 1.5rem;
  line-height:1.7;
  overflow:hidden;
}

img {
	max-width:100%;
	height:auto;
}

.sp_none,.hidden {
	display:none !important;
}


/**********************************************************/
/*  メインエリア */
/**********************************************************/

main {
	width:100%;
	display:block;
	margin:0;
	position:relative;
	margin-top:20px;
}

.inner {
	width:90%;
	margin:0 auto;
	position:relative;
}

section {
	width:100%;
	position:relative;
}

.center {
	text-align:center;
}
.align-right {
	text-align:right;
}


/**********************************************************/
/* 見出し・本文・リスト設定 */
/**********************************************************/

main h1,
main h2,
main h3 {
}

main h3 {
}



/**********************************************************/
/* テーブル */
/**********************************************************/

#content table {
    border-left: 2px solid #CCC;
    border-top: 2px solid #CCC;
    margin: 20px 0 50px;
}

#content th {
    background: #FFF;
    border-bottom: 2px solid #CCC;
    border-right: 2px solid #CCC;
    font-weight: 500;
    /*line-height: 1.2;*/
    padding: 5px 10px;
    text-align: center;
    vertical-align: middle;
}

#content td {
	background: #FFF;
    border-bottom: 2px solid #CCC;
    border-right: 2px solid #CCC;
	font-weight: 500;
    padding: 5px 10px;
	text-align:center;
    vertical-align: middle;
}


/**********************************************************/
/* フッター */
/**********************************************************/

footer {
	background:#222;
	width:100%;
	padding:12px 0;
	color:#FFF;
}

footer .copy {
	font-size:1.2rem;
	text-align:center;
	font-family:"Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体";
}

}



