@charset "utf-8";

/* ------------------------------ */

/* ボタン */
input[type="button"] {
   border-style:none;
   background-image: linear-gradient(0deg, #a7d9f5, #eaf6fd); /* グラデーション */
   border: 1px solid #3c7fb1; /* 枠線 */
   border-radius: 0.3em;      /* 角丸 */
   font-weight: bold;
   padding: 6px 10px;
   background-color: #3333CC;
   font-size: 1.0em;
   box-shadow: 2px 2px 3px 1px #666; 
   -moz-box-shadow: 2px 2px 3px 1px #666;
   -webkit-box-shadow: 2px 2px 3px 1px #666; 
}

/* テキストボックス */
input[type="text"] {
   border:0;
   font-size:1.2em;
   border:solid 1px #ccc;
   margin:0 0 10px;
   width:60px;
   height:30px;
}

/*  */
.view_position{
   text-align: center;
}
.button_layout{
   text-align: center;
}
.link_design{
   text-decoration: none;
}

.img_layout{
   border: 4px #000000 solid;
}

.loading{
	position: relative;
}

#loading_bg{
	display: none;
	position: absolute;
	width: 90px;				/* 画像の幅 */
	height: 90px;				/* 画像の高さ */
	margin: 300px 0 0 450px;	/* 画像を画面中央に */
	background: url(../img/loading.gif) 0 0 no-repeat;
	background-size: 90px;
	background-position: center center;
	border-radius: 15px;
}