@charset "utf-8";

html {
    height: 100%;
}
body{
    height: 100%;
    font-family: 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    -webkit-text-size-adjust: 100%;
    font-size: 14px;
	color:#333;
}
input[type="text"], input[type="password"], input[type="tel"], input[type="email"] {
	width: 300px;
	padding: 7px 10px;
	font-family: inherit;
	border: 1px solid #ddd;
	border-radius: 2px;
	font-size: inherit;
}
textarea {
	padding: 7px 10px;
	font-family: inherit;
	border: 1px solid #ddd;
	border-radius: 2px;
	font-size: inherit;
}
.button {
	border: 0;
	background-color: #ccc;
	color: #333;
	padding: 10px 40px;
	border-radius: 2px;
	font-size: 16px;
	box-shadow: 1px 1px 4px -1px #555;
	display: inline-block;
	cursor: pointer;
}
.button--short {
	padding: 5px 10px;
	font-size: 14px;
}
.button--red {
	background-color: #C7243A;
	color: #fff;
}
.button--green {
	background-color: #23AC0E;
	color: #fff;
}
.button--blue {
	background-color: #007AB7;
	color: #fff;
}

/*============================
#root
============================*/
#root{
	height: 100%;
}

.inner {
	position: relative;
    width: 100%;
}
.common_header__logo {
	padding: 20px 0;
}
.common_header__logo h1 {
	width: 200px;
}
.common_footer {
	margin-top: -55px;
	text-align: center;
	background-color: #333;
	color: #fff;
	line-height: 55px;
	font-size: 12px;
}
.common_message {
	background-color: #D1F1CC;
	border: 1px solid #23AC0E;
	padding: 5px 10px;
	border-radius: 3px;
}
.common_message p {
	
}

.common_error_base {
	position: fixed;
	z-index: 1000;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	top: 0;
	left: 0;
}
.common_error_wrap {
	position: absolute;
	width: 600px;
	top: 50%;
	margin-top: -50px;
	left: 50%;
	margin-left: -300px;
	background-color: #fff;
	border-radius: 3px;
}
.common_error__text {
	padding: 20px;
}
.common_error__button {
	padding: 10px;
	border-top: 1px solid #ddd;
	text-align: center;
	background-color: #eee;
	border-radius: 0 0 3px 3px;
}
.common_error__button .button--close {
	width: auto;
	padding: 5px 10px;
	font-size: 14px;
}