*:focus {
	outline: none;
}

html {
	margin: 0px;
	padding: 0px;
}

body {
	margin: 0px;
	padding: 0px;
	font-family: Arial, "メイリオ", Meiryo, sans-serif;
	background-image: url('img/bg.jpg');
	background-repeat: no-repeat;
	background-position: 0% 0%;
	background-size: cover;
	background-attachment: fixed;
}

div, p, input, select, textarea {
	box-sizing: border-box;
}

input[type="text"], input[type="email"], input[type="password"], input[type="tel"], select, textarea {
	padding: 10px;
	font-size: 1.0em;
}

input, select, textarea {
	display: block;
	width: 100%;
	margin: 10px auto;
	border: 1px solid #c0c0c0;
	border-radius: 5px;
	box-shadow: 0px 0px 3px rgba(0,0,0,0.5);
}

input[type="checkbox"] {
    display: inline;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 10px;
	transition-duration: 0.3s;
}

textarea {
	min-height: 100px;
}

.n_button {
	display: block;
	width: 100%;
	margin: 20px auto;
	margin-top: 30px;
	padding: 10px;
	border: 1px solid #009688;
	border-radius: 5px;
	color: #fff;
	font-size: 1.0em;
	font-weight: bold;
	background-color: #009688;
	transition-duration: 0.3s;
	box-sizing: border-box;
	text-align: center;
	text-decoration: none;
}

.n_button:hover {
	color: #009688;
	background-color: #fff;
}

.c_button {
	display: block;
	width: 100%;
	margin: 20px auto;
	margin-top: 30px;
	padding: 10px;
	border: 1px solid #707070 !important;
	border-radius: 5px;
	color: #fff;
	font-size: 1.0em;
	font-weight: bold;
	background-color: #707070 !important;
	transition-duration: 0.3s;
}

.c_button:hover {
	color: #707070 !important;
	background-color: #fff !important;
}

.p_button {
	display: block;
	min-width: 200px;
	margin: 20px auto;
	margin-top: 15px;
	padding: 10px;
	border: 1px solid #3f51b5;
	border-radius: 5px;
	color: #fff;
	font-size: 1.0em;
	font-weight: bold;
	background-color: #3f51b5;
	transition-duration: 0.3s;
}

.p_button:hover {
	color: #3f51b5;
	background-color: #fff;
}

hr {
	border: none;
	border-top: 1px solid #c0c0c0;
}

table {
	border-collapse: collapse;
}

.bb {
	display: block;
}

.ib {
	display: inline-block;
}

.grid {
	display: grid;
}

.i_grid {
	display: inine-grid;
}

.lfloat {
	float: left;
}

.rfloat {
	float: right;
}

.clear {
	clear: both;
}

.center {
	text-align: center;
}

.left {
	text-align: left;
}

.right {
	text-align: right;
}

.bold {
	font-weight: bold;
}

.cr {
	width: 30px;
	height: 30px;
	vertical-align: middle;
}

.finger {
cursor: pointer;
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currentlysupported by Chrome and Opera */
}

.sp {
	display: none;
}

#wrapper {
	display: grid;
	grid-template-rows: auto 1fr auto;
	width: 100%;
	min-height: 100vh;
	margin: 0px;
	padding: 0px;
}

#header {
}

#content {
	display: grid;
}

#footer {
}

.main_block {
	width: 95%;
	max-width: 600px;
	margin: 30px auto;
	padding: 15px;
	align-self: center;
	border-radius: 5px;
	background-color: rgba(255,255,255,0.75);
	box-shadow: 0px 0px 5px rgba(0,0,0,0.35);
}

.form_block {
	width: 95%;
	max-width: 400px;
	margin: 0px auto;
}

.input_title {
	margin-top: 20px;
	padding: 5px;
	padding-left: 15px;
	font-size: 0.8em;
	font-weight: bold;
	color: #505050;
	background-color: #dee4e7;
	border-radius: 5px;
}

.dashboard_block {
	display: grid;
    grid-template-columns: auto 1fr;
    grid-gap: 30px;
    width: 95%;
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 5px;
    background-color: rgba(255,255,255,0.75);
    box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
}

.side_menu {
	min-width: 200px;
}

.view_area {
	width: 100%;
	max-width: 700px;
}

.btn_menu {
	display: block;
	min-width: 80%;
	margin: 20px auto;
	padding: 10px 0px;
	font-size: 0.9em;
	color: #fff;
	font-weight: bold;
	border-radius: 5px;
	border: 1px solid #009688;
	background-color: #009688;
	transition-duration: 0.3s;
}

.btn_menu:hover {
	color: #009688;
	background-color: #fff;
}

.view_title {
    margin: 20px 0px;
    padding-bottom: 5px;
    font-size: 2.0em;
    font-weight: bold;
    color: #607D8B;
    border-bottom: 1px solid #607d8b;
}

.short_title {
    padding: 5px 5px 5px 15px;
	text-align: left;
	font-size: 1.1em;
    font-weight: bold;
    color: #fff;
    background-color: #3f51b5;
    border-radius: 5px;
}

.area_section, .page_introduce_wrap, .page_logout {
	margin-top: 20px;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px dotted #c0c0c0;
}

.area_section .input_title {
	margin-top: 30px;
	background-color: #dee4e7;
	color: #505050;
}

.area_section .input_title + input {
	max-width: unset;
	margin-bottom: 20px;
}

.important_info {
	display: none;
}

.page_au {
	display: none;
}

.au_url {
	max-width: 100%;
	margin-left: 0px;
}

.page_btn {
	margin-top: 20px;
	margin-bottom: 0px;
	background-color: #2196F3;
	border: 1px solid #2196F3;
}

.page_btn:hover {
	color: #2196F3;	
}

.qr_area {
	margin-top: 10px;
	padding: 10px;
	background-color: #fff;
	box-shadow: 0px 0px 3px rgba(0,0,0,0.5);
	border-radius: 5px;
}

.mobile_menu_open {
	display: none;
    position: fixed;
    top: 5px;
    left: 5px;
    font-size: 2.5em;
    width: 50px;
    height: 50px;
    background-color: #00968885;
    text-align: center;
    border-radius: 100px;
    color: #fff;
	line-height: 1.25em;
}

.mobile_menu_close {
	display: none;
	text-align: left;
	padding-top: 10px;
	padding-left: 10px;
	font-size: 2.5em;
}

.page_introduce_wrap {
	display: none;
    border: 1px solid #c0c0c0;
    background-color: #fff;
    padding: 15px;
    border-radius: 5px;
}

.page_introduce {
	overflow-x: scroll;
}

.page_introduce::-webkit-scrollbar {
	height: 7px;
	background-color: rgba(0,0,0,0.1);
	border-radius: 7px;
}

.page_introduce::-webkit-scrollbar-thumb {
	background-color: rgba(0,0,0,0.5);
	border-radius: 7px;
}

.page_introduce ul ul {
	display: none;
}

.page_introduce li {
	list-style: none;
}

.page_introduce ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.page_introduce ul {
	position: relative;
	margin-left: 7px;
}

.page_introduce ul:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 0;
	border-left: 1px dotted #909090;
}

.page_introduce ul li {
	position: relative;
	margin: 0;
	padding: 7px 15px;
    white-space: nowrap;
}

.page_introduce ul li:before {
	content: "";
	display: block;
	position: absolute;
	top: 15px;
	left: 0;
	width: 15px;
	height: 0;
	border-top: 1px dotted #909090;
}

.page_introduce ul li:last-child:before {
	top: 15px;
	bottom: 0;
	height: auto;
	background-color: #fff;
}

.i_c_bc {
	display: inline-block;
	padding: 3px;
	font-size: 0.6em;
	color: #fff;
	background-color: #27254a;
	border-radius: 5px;
	vertical-align: top;
}

.i_c_vc {
	display: inline-block;
	padding: 3px;
	font-size: 0.6em;
	color: #fff;
	background-color: #e91e63;
	border-radius: 5px;
	vertical-align: top;
}

.page_account {
	display: none;
}

.footer_menu_area {
	display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
	margin-top: 15px;
}

.footer_menu {
    color: #fff;
    background-color: #00BCD4;
	border: 1px solid #00BCD4;
    border-radius: 5px;
    min-height: 75px;
    padding: 15px;
	text-align: center;
	transition-duration: 0.3s;
	box-shadow: 0px 0px 3px rgba(0,0,0,0.5);
}

.footer_menu:hover {
    color: #00BCD4;
    background-color: #fff;
}

.footer_menu i {
	display: block;
	margin-bottom: 10px;
	font-size: 2.0em;
}

.page_account .input_title {
	margin-bottom: 10px;
}

.change_important_info, .cancel {
	background-color: #FF5722;
	border: 1px solid #FF5722;
}

.change_important_info:hover, .cancel:hover {
	background-color: #fff;
	color: #FF5722;
}

.page_commission {
	display: none;
}

.commission_date {
    font-size: 1.2em;
    font-weight: bold;
    color: #FF5722;
}

.commission_table_wrap {
	border-radius: 5px;
	overflow: hidden;
}

.commission_table {
	width: 100%;
}

.commission_table th, .commission_table td {
	border: 1px solid #c0c0c0;
}

.commission_table th {
	padding: 10px;
	background-color: #dee4e7;
}

.commission_table th + th {
}

.commission_table td {
	padding: 5px 3px;
}

.commission_total {
	font-weight: bold;
    background-color: #d4eae6;
}

.bigchance {
	color: #fff;
	font-size: 0.5em;
	font-weight: bold;
	background-color: #27254a;
}

.affiliace {
	color: #fff;
	font-size: 0.5em;
	font-weight: bold;
	background-color: #000;
}

.page_withdrawal {
	display: none;
}

.withdrawal_area {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	grid-column-gap: 15px;
	grid-row-gap: 10px;
}

.withdrawal_area .short_title {
	text-align: center;
	padding: 5px;
}

.withdrawal_box {
	display: grid;
    padding: 10px;
    grid-template-columns: 2fr 1fr;
    grid-gap: 5px;
    border-radius: 5px;
    box-shadow: 0px 0px 3px rgba(0,0,0,0.5);
}

.withdrawal_box input + div {
	align-self: center;
}

.withdrawal_arrow {
	align-self: center;
	font-size: 1.5em;
	color: #607D8B;
}

input.pwa, input.aow {
	padding: 5px;
	text-align: center;
	font-size: 1.3em;
}

.s_c_table {
	width: 100%;
}

.s_c_table td {
	width: 50%;
	padding: 3px;
	text-align: right;
}

.s_c_table td + td {
	text-align: left !important;
}

.s_c:hover {
	background-color: #e0e0e0 !important;
}

.page_wallet {
	display: none;
}

.page_contact {
	display: none;
}

.page_logout {
	display: none;
}

.modal {
	position: fixed;
	top: 0;
	left: 0;
	display: none;
	width: 100%;
	min-height: 100vh;
	background-color: rgba(0,0,0,0.85);
	z-index: 999999999;
}

.modal_content_wrap {
	display: grid;
	width: 100%;
	min-height: 100vh;
}

.modal_content {
	width: 95%;
	max-width: 400px;
	margin: 0px auto;
	padding: 15px;
	border-radius: 5px;
	background-color: #fff;
	align-self: center;
}

.wallet_area {
	transition-duration: 0.3s;
}

.edit_wallet {
	display: none;
}

.all_tree {
	display: inline-block;
	margin-bottom: 30px;
	padding: 7px; 
	font-size: 0.8em;
	font-weight: bold;
	color: #fff;
	background-color: #505050;
	border: 1px solid #505050;
	border-radius: 5px;
	transition-duration: 0.3s;
}

.all_tree:hover {
	color: #505050;
	background-color: #fff;
}

.close_all {
	margin-left: 15px;
}

.normal_info {
	margin-bottom: 50px;
	padding-bottom: 50px;
}

.normal_info + .normal_info {
	margin-top: 50px;
}

.edit_password_area, .edit_email_area, .edit_important_area {
	display: none;
}

.edit_area {
	display: none;
}

.move_service {
	font-size: 1.2em;
	font-weight: bold;
}

.page_db_info_area a, .move_service a {
	display: block;
	width: 100%;
	color: inherit;
	text-decoration: none;
}

.join_bc {
	background-color: #673ab7;
	border: 1px solid #673ab7;
	color: #ffeb3b;
}

.join_bc:hover {
	background-color: #fff;
	color: #673ab7;
}

.dspg {
	display: grid;
}

.gg10 {
	grid-gap: 10px;
}

.gtca1 {
	grid-template-columns: auto 1fr;
}

.g-recaptcha > div {
	margin: 0px auto;
}

.mini_btn {
    border-radius: 5px;
    padding: 3px 15px;
    min-width: 100px;
	border: 1px solid #2196f3;
	background-color: #2196f3;
	color: #fff;
	transition-duration: 0.3s;
}

.mini_btn:hover {
	background-color: #fff;
	color: #2196f3;
}

@media only screen and (max-width: 767px) {
	.dashboard_block {
		grid-template-columns: 1fr;
	}
	
	.side_menu {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background-color: rgba(255,255,255,0.85);
		overflow-y: scroll;
		z-index: 999999;
	}
	
	.side_menu .btn_menu {
		width: 90%;
	}
	
	.mobile_menu_open {
		display: block;
	}
	
	.mobile_menu_close {
		display: block;
	}
	
	.footer_menu_area {
		grid-template-columns: repeat(3, 1fr);
	}
	
	.footer_menu {
		padding: 5px;
	}

	.commission_table {
		font-size: 0.7em;
	}
	
	.withdrawal_area {
		grid-template-columns: 1fr;
	}
	
	.pwa_wrap {
		grid-row: 2;
	}
	
	.withdrawal_spacer {
		display:none;
	}

	.withdrawal_arrow {
		grid-row: 3;
		transform:rotate(90deg);
	}
	
	.sp {
		display: block;
	}
}

.user_id, .user_rank, .au_url, .af_code {
	background-color: #f0f0f0;
}