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

/*基本設定*/
html {
	/*background-color: #202020;*/
	background-color: #000;
	font-size: 62.5%;
}
body {
	font-size: 1.6rem;
	line-height: 1.5;
	text-align: center;
	color: #cccccc;
}
a {
	color: #cccccc;
	text-decoration: none;
}
img {
	max-width: 100%;
	height: auto;
}
/*フォーム部品の設定*/
input[type="text"], input[type="password"], input[type="email"], input[type="date"] {
	height: 40px;
	width: 100%;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0px 12px;
	border-radius: 3px;
	background: #e5e5e5;
	background: -moz-linear-gradient(top, #e5e5e5 0%, #ffffff 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #e5e5e5), color-stop(100%, #ffffff));
	background: -webkit-linear-gradient(top, #e5e5e5 0%, #ffffff 100%);
	background: -o-linear-gradient(top, #e5e5e5 0%, #ffffff 100%);
	background: -ms-linear-gradient(top, #e5e5e5 0%, #ffffff 100%);
	background: linear-gradient(to bottom, #e5e5e5 0%, #ffffff 100%);
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e5e5e5', endColorstr='#ffffff', GradientType=0 );
	box-shadow: inset 0 2px 4px 0 #707070;
}
input[type="button"], input[type="submit"] {
	border: none;
}
.contents_box input[type="radio"] {
	display: none;
}
.contents_box .radio label {
	display: inline-block;
	position: relative;
	padding-left: 20px;
	margin: 0 12px 16px 12px;
}
.contents_box .radio label:before {
	content: ' ';
	width: 22px;
	height: 22px;
	border-radius: 11px;
	position: absolute;
	top: 50%;
	left: -11px;
	margin-top: -11px;
	background: #303030;
	background: -moz-linear-gradient(top, #303030 49%, #323232 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(49%, #303030), color-stop(100%, #323232));
	background: -webkit-linear-gradient(top, #303030 49%, #323232 100%);
	background: -o-linear-gradient(top, #303030 49%, #323232 100%);
	background: -ms-linear-gradient(top, #303030 49%, #323232 100%);
	background: linear-gradient(to bottom, #303030 49%, #323232 100%);
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#303030', endColorstr='#323232', GradientType=0 );
	box-shadow: inset 0px 2px 8px 0px #0a0a0a, 0px 1px 0 0 #5a5a5a;
}
.contents_box .radio label:after {
	content: ' ';
	width: 8px;
	height: 8px;
	border-radius: 4px;
	position: absolute;
	top: 50%;
	left: -4px;
	margin-top: -4px;
	background: #00deff;
	box-shadow: 0 0 3px 1px #00deff, inset 0 0 9px 0 rgba(255,255,255,0.9);
	transition: opacity 0.3s linear;
	opacity: 0;
}
.contents_box .radio input[type="radio"]:checked + label:after {
	opacity: 1;
}
/*ボタンの設定*/
.button_frame {
	margin: 0 auto;
	padding: 4px;
	border-radius: 6px;
	background: #1e1e1e;
	background: -moz-linear-gradient(top, #1e1e1e 0%, #323232 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #1e1e1e), color-stop(100%, #323232));
	background: -webkit-linear-gradient(top, #1e1e1e 0%, #323232 100%);
	background: -o-linear-gradient(top, #1e1e1e 0%, #323232 100%);
	background: -ms-linear-gradient(top, #1e1e1e 0%, #323232 100%);
	background: linear-gradient(to bottom, #1e1e1e 0%, #323232 100%);
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e1e1e', endColorstr='#323232', GradientType=0 );
	box-shadow: inset 0 2px 4px 0 #0a0a0a, 0px 1px 0px 0px #5a5a5a;
}
.button {
	display: block;
	width: 100%;
	height: 40px;
	line-height: 40px;
	border-radius: 2px;
	background: #d0d0d0;
	background: -moz-linear-gradient(top, #d0d0d0 0%, #989898 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #d0d0d0), color-stop(100%, #989898));
	background: -webkit-linear-gradient(top, #d0d0d0 0%, #989898 100%);
	background: -o-linear-gradient(top, #d0d0d0 0%, #989898 100%);
	background: -ms-linear-gradient(top, #d0d0d0 0%, #989898 100%);
	background: linear-gradient(to bottom, #d0d0d0 0%, #989898 100%);
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d0d0d0', endColorstr='#989898', GradientType=0 );
	box-shadow: inset 0px 1px 0px 0px #fafafa, 0px 1px 4px 0px rgba(0, 0, 0, 0.7);
	color: #333333;
	font-weight: bold;
	text-shadow: 0px 1px 0px #fafafa;
	cursor: pointer;
	margin: 0 auto 8px;
}
.button:hover {
	background: #989898;
	background: -moz-linear-gradient(top, #989898 0%, #d0d0d0 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #989898), color-stop(100%, #d0d0d0));
	background: -webkit-linear-gradient(top, #989898 0%, #d0d0d0 100%);
	background: -o-linear-gradient(top, #989898 0%, #d0d0d0 100%);
	background: -ms-linear-gradient(top, #989898 0%, #d0d0d0 100%);
	background: linear-gradient(to bottom, #989898 0%, #d0d0d0 100%);
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#989898', endColorstr='#d0d0d0', GradientType=0 );
	box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.7);
}
.button a {
	color: #333333;
}
.button_frame .button {
	margin: 0;
}
/*共通設定*/
.rayout {
	margin: 0 auto;
	width: 480px;
}
.title {
	max-width: 270px;
	margin: 32px auto 16px;
}
.apartment_name {
	color: #FFFFFF;
	font-size: 2.0rem;
	margin-bottom: 16px;
}
.login .contents, .room_name, nav ul {
	border: 1px solid #070707;
	border-radius: 6px;
	background: #404040;
	background: -moz-linear-gradient(top, #404040 0%, #303030 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #404040), color-stop(100%, #303030));
	background: -webkit-linear-gradient(top, #404040 0%, #303030 100%);
	background: -o-linear-gradient(top, #404040 0%, #303030 100%);
	background: -ms-linear-gradient(top, #404040 0%, #303030 100%);
	background: linear-gradient(to bottom, #404040 0%, #303030 100%);
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#404040', endColorstr='#303030', GradientType=0 );
	box-shadow: inset 0px 1px 0px 0px #5a5a5a, 0px 1px 0px 0px #505050;
	color: #cccccc;
}
.room_name {
	position: relative;
	padding: 16px 60px;
	margin-bottom: 24px;
}
.contents_header {
	border: 1px solid #070707;
	border-radius: 6px 6px 0 0;
	background: #404040;
	background: -moz-linear-gradient(top, #404040 0%, #303030 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #404040), color-stop(100%, #303030));
	background: -webkit-linear-gradient(top, #404040 0%, #303030 100%);
	background: -o-linear-gradient(top, #404040 0%, #303030 100%);
	background: -ms-linear-gradient(top, #404040 0%, #303030 100%);
	background: linear-gradient(to bottom, #404040 0%, #303030 100%);
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#404040', endColorstr='#303030', GradientType=0 );
	box-shadow: inset 0px 1px 0px 0px #5a5a5a;
	font-size: 1.8rem;
	padding: 16px 0;
	position: relative;
}
.room_name h3, .contents_header h4 {
	font-size: 1.8rem;
	color: #FFFFFF;
	text-shadow: 0px 1px 0px #070707;
}
.header_button {
	width: 44px;
	height: 45px;
	margin-top: -22px;
	position: absolute;
	top: 50%;
}
.header_button.logout {
	right: 8px;
}
.header_button.menu {
	left: 8px;
}
.header_button a {
	display: block;
	width: 100%;
	height: 100%;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}
.header_button.logout a {
	background: url(../images/button_logout.png) top left no-repeat;
	background-size: 44px 45px;
}
.header_button.logout a:hover {
	background: url(../images/button_logout_hover.png) top left no-repeat;
	background-size: 44px 45px;
}
.header_button.menu {
	background: url(../images/button_menu.png) top left no-repeat;
	background-size: 44px 45px;
}
.header_button.menu a {
	opacity: 0;
	transition: opacity 0.15s linear;
}
.header_button.menu a:hover {
	background: url(../images/button_menu_hover.png) top left no-repeat;
	background-size: 44px 45px;
	opacity: 1;
}
/*メニュー*/
nav {
	position: absolute;
	top: 50%;
	left: 8px;
	margin-top: 22px;
	z-index: 1;
}
nav ul {
	width: 264px;
	padding: 8px;
}
nav ul li {
	border-top: 1px solid #0f0f0f;
	border-right: 1px solid #0f0f0f;
	border-left: 1px solid #0f0f0f;
	background: #202020;
	background: -moz-linear-gradient(top, #202020 0%, #181818 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #202020), color-stop(100%, #181818));
	background: -webkit-linear-gradient(top, #202020 0%, #181818 100%);
	background: -o-linear-gradient(top, #202020 0%, #181818 100%);
	background: -ms-linear-gradient(top, #202020 0%, #181818 100%);
	background: linear-gradient(to bottom, #202020 0%, #181818 100%);
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#202020', endColorstr='#181818', GradientType=0 );
	box-shadow: inset 0px 1px 0px 0px #3c3c3c;
	position: relative;
}
nav ul li:first-child {
	border-radius: 3px 3px 0px 0px;
}
nav ul li:last-child {
	border-radius: 0px 0px 3px 3px;
}
nav ul li:hover {
	background: #1e1e1e;
	box-shadow: inset 0px 0px 18px 0px rgba(0, 0, 0, 0.8);
}
nav ul li a {
	display: block;
	padding: 16px 0 16px 40px;
	background: url(../images/nav_icon_home.png) center left 8px no-repeat, url(../images/nav_icon_arrow.png) center right 8px no-repeat;
	background-size: 24px 25px, 12px 20px;
	color: #cccccc;
	text-shadow: 0 1px 0px #0f0f0f;
	text-align: left;
	font-weight: bold;
}
nav ul li.nav_secret a {
	background: url(../images/nav_icon_secret.png) center left 8px no-repeat, url(../images/nav_icon_arrow.png) center right 8px no-repeat;
	background-size: 24px 25px, 12px 20px;
	cursor: pointer;
}
nav ul li.nav_card a {
	background: url(../images/nav_icon_card.png) center left 8px no-repeat, url(../images/nav_icon_arrow.png) center right 8px no-repeat;
	background-size: 24px 25px, 12px 20px;
	cursor: pointer;
}
nav ul li.nav_alert a {
	background: url(../images/nav_icon_alert.png) center left 8px no-repeat, url(../images/nav_icon_arrow.png) center right 8px no-repeat;
	background-size: 24px 25px, 12px 20px;
	cursor: pointer;
}
nav ul li.nav_pin a {
	background: url(../images/nav_icon_login.png) center left 8px no-repeat, url(../images/nav_icon_arrow.png) center right 8px no-repeat;
	background-size: 24px 25px, 12px 20px;
	cursor: pointer;
}
nav ul li.nav_log a {
	background: url(../images/nav_icon_history2.png) center left 8px no-repeat, url(../images/nav_icon_arrow.png) center right 8px no-repeat;
	background-size: 24px 25px, 12px 20px;
	cursor: pointer;
}
.animenu__nav, .animenu__nav__child {
	display: none;
}
.animenu__nav--open {
	display: block !important;
}
.animenu__nav--open .animenu__nav__child {
	display: block;
}
.animenu__nav--slide {
	margin-top: 300px;
}
.contents_box {
	text-align: left;
	background: #272727;
	margin-bottom: 64px;
	padding: 16px;
	box-shadow: inset 0px 0px 18px 0px rgba(0, 0, 0, 0.8);
	position: relative;
}
.contents_box:after {
	content: "";
	display: block;
	width: 100%;
	height: 32px;
	position: absolute;
	bottom: -32px;
	left: 0;
	border: 1px solid #070707;
	border-radius: 0 0 6px 6px;
	background: #404040;
	background: -moz-linear-gradient(top, #404040 0%, #303030 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #404040), color-stop(100%, #303030));
	background: -webkit-linear-gradient(top, #404040 0%, #303030 100%);
	background: -o-linear-gradient(top, #404040 0%, #303030 100%);
	background: -ms-linear-gradient(top, #404040 0%, #303030 100%);
	background: linear-gradient(to bottom, #404040 0%, #303030 100%);
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#404040', endColorstr='#303030', GradientType=0 );
	box-shadow: inset 0px 1px 0px 0px #5a5a5a, 0px 1px 0px 0px #505050;
}
/*ログイン*/
.login {
	width: 472px;
	margin: 0px auto;
	padding: 0 4px;
}
.login p {
	margin-bottom: 16px;
}
.under p {
	margin-bottom: 0px;
}
.read {
	margin-top: 20px;
}
.error {
	color: #d91633;
}
.login .contents a {
	color: #00e4ff;
}
#progress {
	display: none;
	text-align: center;
	vertical-align: central;
	background-color: rgba(64,64,64,0.2);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding-top: 40%;
	z-index: 4;
}
/*HOME*/
.rayout.home {
	width: 804px;
}
.switch_home {
	width: 300px;
	float: left;
}
.switch_area {
	width: 300px;
	float: left;
}
.log_home {
	width: 480px;
	float: right;
}
.log_area {
	width: 480px;
	float: right;
}
.switch {
	max-width: 300px;
	cursor: pointer;
	margin: auto;
}
.header_button.reload {
	right: 8px;
}
.header_button.reload a {
	background: url(../images/button_reload.png) top left no-repeat;
	background-size: 44px 45px;
}
.header_button.reload a:hover {
	background: url(../images/button_reload_hover.png) top left no-repeat;
	background-size: 44px 45px;
}
.log_area ul {
	background: #272727;
	padding: 0 12px;
	box-shadow: inset 0px 0px 18px 0px rgba(0, 0, 0, 0.8);
}
.log_area ul li {
	border-top: 1px solid #505050;
	border-bottom: 1px solid #070707;
	text-align: left;
	padding: 4px 0;
}
.log_area ul li:first-child {
	border-top: none;
}
.log_area ul li:last-child {
	border-bottom: none;
}
.log_area ul span{
	display: block;
}

.readmore {
	border: 1px solid #070707;
	border-radius: 0 0 6px 6px;
	background: url(../images/readmore.png) center no-repeat, -moz-linear-gradient( 90deg, rgb(48,48,48) 0%, rgb(64,64,64) 100%) top left repeat;
	background: url(../images/readmore.png) center no-repeat, -webkit-linear-gradient( 90deg, rgb(48,48,48) 0%, rgb(64,64,64) 100%) top left repeat;
	background: url(../images/readmore.png) center no-repeat, -ms-linear-gradient( 90deg, rgb(48,48,48) 0%, rgb(64,64,64) 100%) top left repeat;
	background-size: 30px 10px, 100% 100%;
	box-shadow: inset 0px 1px 0px 0px #5a5a5a, 0px 1px 0px 0px #505050;
	font-size: 1.8rem;
	height: 30px;
	margin-bottom: 10px;
	position: relative;
}
.readmore a {
	display: block;
	width: 100%;
	height: 100%;
}
.readclose {
	background: url(../images/readclose.png) center no-repeat, -moz-linear-gradient( 90deg, rgb(48,48,48) 0%, rgb(64,64,64) 100%) top left repeat;
	background: url(../images/readclose.png) center no-repeat, -webkit-linear-gradient( 90deg, rgb(48,48,48) 0%, rgb(64,64,64) 100%) top left repeat;
	background: url(../images/readclose.png) center no-repeat, -ms-linear-gradient( 90deg, rgb(48,48,48) 0%, rgb(64,64,64) 100%) top left repeat;
	background-size: 30px 10px, 100% 100%;
}
/*暗証番号設定*/
.contents_box .secret input[type="text"], .contents_box .secret input[type="date"] {
	margin-bottom: 16px;
}
/*カード管理*/
.header_button.add {
	right: 8px;
}
.header_button.add a {
	background: url(../images/button_add.png) top left no-repeat;
	background-size: 44px 45px;
}
.header_button.add a:hover {
	background: url(../images/button_add_hover.png) top left no-repeat;
	background-size: 44px 45px;
}
.contents_box.card {
	padding: 0 16px;
}
.card ul li {
	padding: 16px 0;
	border-bottom: 1px solid #0F0F0F;
	-webkit-box-shadow: 0px 1px #505050;
	box-shadow: 0px 1px #505050;
	position: relative;
}
.card ul li:last-child {
	border-bottom: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}
.card ul li dd {
	margin-bottom: 16px;
	position: relative;
}
.card ul li dd:last-child {
	margin-bottom: 0;
}
.card ul li dd .card_rename_text {
	margin-right: 80px;
}
.card ul li dd .card_rename_button {
	position: absolute;
	top: 0;
	right: 0;
	width: 72px;
	font-size: 1.4rem;
}
.card_list_button {
	width: 32px;
	height: 33px;
	position: absolute;
	top: 16px;
}
.card_list_button a {
	display: block;
	width: 100%;
	height: 100%;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}
.card_list_button.rename {
	right: 40px;
}
.card_list_button.rename a {
	background: url(../images/button_rename.png) top left no-repeat;
	background-size: 32px 33px;
}
.card_list_button.rename a:hover {
	background: url(../images/button_rename_hover.png) top left no-repeat;
	background-size: 32px 33px;
}
.card_list_button.delete {
	right: 0;
}
.card_list_button.delete a {
	background: url(../images/button_delete.png) top left no-repeat;
	background-size: 32px 33px;
}
.card_list_button.delete a:hover {
	background: url(../images/button_delete_hover.png) top left no-repeat;
	background-size: 32px 33px;
}
/*カード新規登録*/
.header_button.back {
	left: 8px;
}
.header_button.back a {
	background: url(../images/button_back.png) top left no-repeat;
	background-size: 44px 45px;
}
.header_button.back a:hover {
	background: url(../images/button_back_hover.png) top left no-repeat;
	background-size: 44px 45px;
}
.card_entry dd {
	margin-bottom: 16px;
}
/*通知設定*/
.safety_alert {
	margin-top: 16px;
}
.safety_alert input[type="text"] {
	width: 60px;
	margin-right: 4px;
	vertical-align: bottom;
}
.safety_alert p {
	margin-bottom: 16px;
}
.safety_alert p.radio {
	margin-bottom: 0;
}
/*テキスト系ページ共通設定*/
#wrapper {
	max-width: 632px;
	margin: 0px auto 0px;
	padding: 0 8px;
}
.contents {
	color: #333333;
	background-color: #FFFFFF;
	margin-bottom: 8px;
	padding: 16px;
}
.contents h3 {
	font-size: 2.1rem;
	position: relative;
	padding-left: 18px;
	margin-bottom: 20px;
	text-align: justify;
}
.contents h3:before {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 6px;
	height: 29px;
	background: #818181;
	font-size: 16px;
	content: "";
}
.contents_inner {
	margin: 0px 16px;
	text-align: justify;
}
.contents_inner p {
	padding: 6px 0px;
}
.contents_inner ul {
	margin: 0 0 0 28px;
}
.contents_inner li {
	list-style-type: decimal;
	padding: 6px 0px;
}
/*お問い合わせページ*/
.callcenter {
	margin: 32px 0px 16px;
}
.callcenter span {
	font-size: 35px;
	font-size: 3.5rem;
}
.callcenter a {
	color: #d91633;
}
/*規約関連ページ*/
.contents h4 {
	font-size: 1.8rem;
	margin: 36px 0px 6px;
}
.communication li {
	list-style-type: disc;
}
.iroha li {
	list-style-type: katakana-iroha;
}
/*datepickerカスタマイズ用設定*/
.ui-datepicker {
	width: 300px !important;
}
.ui-widget-header {
	color: #454545;
}
.ui-widget-header .ui-icon {
	background-image: url(images/ui-icons_454545_256x240.png);
}
.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
	top: 4px;
	box-sizing: border-box;
}
.ui-datepicker .ui-datepicker-prev {
	left: 4px;
}
.ui-datepicker .ui-datepicker-next {
	right: 4px;
}
.ui-widget-content {
	color: #333333;
}

@media only screen and (max-width: 640px) {
body {
	padding: 0 10px 10px;
}
.rayout, .rayout.home {
	width: 100%;
	max-width: 480px;
}
.switch_area {
	width: 100%;
	float: none;
}
.log_area {
	width: 100%;
	float: none;
}
}
