@charset "utf-8";
/* ------------------------------------- */
/* PC */
/* ------------------------------------- */
.pc_content{
	display: block;
}
.sp_content{
	display: none;
}
.pc_br{
	display: block;
}
.sp_br{
	display: none;
}
/* ------------------------------------- */
/* Reset */
/* ------------------------------------- */
* {
	font-size:100%;
}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td {
	padding: 0;
	margin: 0;
}
img {
	border:none;
	vertical-align: bottom;
}
li {
	list-style: none;
}
div {
	zoom:1;
}
a {
	outline:none;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
/* ------------------------------------- */
/* Layout */
/* ------------------------------------- */
html {
 overflow-y: scroll;
}
body {
	text-align: left;
	font-family:"Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size:12px;
	min-width: 1280px;
	-webkit-text-size-adjust: 100%;
}
/* Utilities */
.clearfix:after{
	content:"";
	display:block;
	clear: both;
}
.clearfix{
	display: inline-block;
}
/* no ie mac \*/
* html .clearfix {
	height: 1%;
}
.clearfix{
	display: block;
}
/* ------------------------------------- */
/* header */
/* ------------------------------------- */
#header{
	text-align: left;
	font-family:"Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	position: relative;
	background-color: #fff;
	line-height: 1.75;
	box-shadow: 0 4px 5px -4px rgba(0,0,0,0.1);
	z-index: 1;
}
.header_top{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 1280px;
	margin: 0 auto;
	padding: 10px 0 10px 10px;
	font-size: 14px;
	box-sizing: border-box;
}
.header_top a{
	color: #2F7CFA;
	text-decoration: underline;
}
.header_top a:hover{
	text-decoration: none;
}
.header_logo{
	width: 110px;
}
.header_logo img{
	width: 100%;
}
.header_right ul{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	column-gap: 10px;
}
.header_introduction{
	margin-right: 20px;
}
.header_introduction i{
	font-size: 16px;
	margin-right: 5px;
	vertical-align: middle;
}
.header_top .btn_members{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 50px;
	width: 170px;
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
	border-radius: 30px;
	box-sizing: border-box;
	transition: 0.2s ease-in-out;
	box-shadow: 0 2px 4px 0px rgba(0,0,0,0.3);
}
.header_top .btn_members i{
	position: absolute;
	left: 30px;
	top: 50%;
	transform: translateY(-50%);	
}
.header_top .btn_members::after{
	font-family: 'Font Awesome 6 Pro';
	content: '\f105';
	font-weight: 900;
	font-size: 16px;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	transition: 0.2s ease-in-out;
}
.header_top .btn_members:hover{
	text-decoration: none;
	transform: scale(1.05);
}
.header_top .btn_members:hover::after{
	right: 15px;
}
.header_login .btn_members{
	background-color: #fff;
	color: #FC7D32;
	border: 3px solid #FC7D32;
}
.header_register .btn_members{
	background-color: #FC7D32;
	color: #fff;
}
/* ------------------------------------- */
/* ヘッダーメニュー */
/* ------------------------------------- */
.header_menu_wrapper{
	width: 100%;
	border-top: 1px solid #CCD0F1;
	border-bottom: 1px solid #CCD0F1;
}
.header_menu{
	width: 1280px;
	margin: 0 auto;
}
.header_menu ul{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header_menu ul li{
	position: relative;
	width: 100%;
	margin-right: -1px;
	text-align: center;
	font-size: 14px;
	font-weight: 500;
}
.header_menu ul li::before{
	content: "";
	display: block;
	position: absolute;
	top: calc(50% - 20px);
	left: 0;
	width: 1px;
	height: 40px;
	background: #CCD0F1;
}
.header_menu ul li::after{
	content: "";
	display: block;
	position: absolute;
	top: calc(50% - 20px);
	right: 0;
	width: 1px;
	height: 40px;
	background: #CCD0F1;
}
.header_menu ul a{
	display: block;
	padding: 12px 0;
	margin: 8px 5%;
	width: 90%;
	color: #333;
	text-decoration: none;
	transition: 0.2s ease-in-out;
	border-radius: 5px;
}
.header_menu ul a .menu_beginner{
	width: 20px;
	margin-right: 1px;
	vertical-align: middle;
}
.header_menu ul a i{
	font-size: 16px;
	color: #2F7CFA;
	margin-right: 5px;
	vertical-align: middle;
	transition: 0.2s ease-in-out;
}
.header_menu ul a:hover{
	background-color: #2F7CFA;
	color: #fff;
	text-decoration: none;
}
.header_menu ul a:hover i{
	color: #fff;
}
/* ------------------------------------- */
/* footer */
/* ------------------------------------- */
#footer{
	text-align: left;
	font-family:"Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size:12px;
	line-height:1.75;
	min-width: 1280px;
}
.footer_inner{
	background-color: #303945;
	min-width: 1280px;
	font-size: 12px;
	text-align: left;
	color: #acb6bf;
	padding: 70px 0 150px;
	line-height: 26px;
}
.footer_inner a{
	color: #fff;
	text-decoration: none;
}
.footer_inner a:hover{
	text-decoration: underline;
}
.footer_navi{
	width: 1000px;
	margin: 0 auto 70px;
}
.footer_navi ul li{
	float: left;
	width: 234px;
	margin-right: 16px;
}
.footer_navi ul li:last-child{
	margin-right: 0;
}
.footer_navi ul li dl{
	margin-bottom: 30px;
}
.footer_navi ul li dl:last-child{
	margin-bottom: 0;
}
.sns_links ul li{
	float: left;
	margin: 5px 10px 0 0;
	width: 30px;
}
.sns_links ul li img{
	width: 30px;
	height: 30px;
}
.sns_links ul li:last-child{
	margin-right: 0;
}
.footer_pmark{
	display: block;
	background-color: #fff;
	border-radius: 4px;
	padding: 2px;
	width: 75px;
}
.footer_bottom_area{
	width: 1000px;
	margin: 0 auto;
}
.footer_bottom_left{
	float: left;
}
.footer_logo_area{
	float: left;
	text-align: left;
	width: 120px;
}
.footer_logo_area a img{
	width: 100%;
}
.footer_logo_area p{
	margin-top: 10px;
	font-size: 12px;
}
.footer_bottom_links{
	float: left;
	width: 660px;
	padding: 0 0 0 60px;
}
.footer_bottom_links li{
	display: inline-block;
	margin-right: 30px;
}
.footer_bottom_links li:last-child{
	margin-right: 0;
}
.footer_bottom_right{
	float: right;
}
.footer_bottom_right .page_top{
	background-color: #475566;
	display: block;
	color: #acb6bf;
	text-align: center;
	width: 50px;
	line-height: 45px;
	padding-bottom: 5px;
	font-size: 25px;
	vertical-align: middle;
}
.footer_sv_position{
	background-color: #303945;
	width: 100%;
	text-align: right;
	display: block;
}
/* ------------------------------------- */
/* members_content */
/* ------------------------------------- */
.members_content_body_wrapper{
	background-color: #fc7d32;
}
.members_content_body{
	width: 1000px;
	margin: 0 auto;
	padding: 80px 0;
	text-align: center;
	color: #fff;
	position: relative;
}
.members_top{
	background-color: #fc7d32;
	display: block;
	width: 170px;
	margin: 0 auto;
	font-size: 22px;
	text-align: center;
	line-height: 40px;
	padding-bottom: 2px;
	position: absolute;
	top: -21px;
	left: 0;
	right: 0;
	border-radius: 21px;
}
.members_content_body h2{
	font-weight: 300;
	font-size: 28px;
	margin-bottom: 30px;
}
.members_content_body .btn_register{
	background-color: #fff;
	display: block;
	width: 600px;
	line-height: 100px;
	margin: 0 auto 20px;
	font-size: 18px;
	text-align: center;
	color: #fc7d32;
	border-radius: 3px;
	text-decoration: none;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
.members_content_body .btn_register:hover{
	text-decoration:none;
	opacity: 0.7;
	filter: alpha(opacity=70);
}
.members_more{
	color: #fff;
	font-size: 14px;
}
.members_more i{
	font-size: 14px;
	padding-left: 5px;
	vertical-align: baseline;
}
/* ------------------------------------- */
/* SMART */
/* ------------------------------------- */
@media screen and (max-width: 768px){

.pc_content{
	display: none;
}
.sp_content{
	display: block;
}
.pc_br{
	display: none;
}
.sp_br{
	display: block;
}
/* Reset */
/* ------------------------------------- */
* {
	font-size:100%;
}
html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p,
header, hgroup, section, article, aside, hgroup, footer, figure, figcaption, nav {
	margin: 0;
	padding: 0;
	font-size: 100%;
}
article,aside,canvas,details,figcaption,figure,
footer,header,hgroup,menu,nav,section,summary { 
	display:block;
}
img {
	border:none;
	vertical-align: bottom;
}
ul, ol {
	list-style: none;
}
li {
	list-style: none;
}
table {
	border-spacing: 0;
	empty-cells: show;
}
div {
	zoom:1;
}
a {
	outline:0;
	text-decoration: none;
}
/* ------------------------------------- */
/* Layout */
/* ------------------------------------- */
html {
 overflow-y: scroll;
}
body {
	text-align: left;
	font-family:"Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size:14px;
	line-height:1.75;
	min-width: 320px;
	-webkit-text-size-adjust: 100%;
}
/* Utilities */
.clearfix:after{
	content:"";
	display:block;
	clear: both;
}
.clearfix{
	display: inline-block;
}
/* no ie mac \*/
* html .clearfix {
	height: 1%;
}
.clearfix{
	display: block;
}
/* ------------------------------------- */
/* header */
/* ------------------------------------- */
#header {
	text-align: left;
	font-family:"Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	position: static;
	min-width: 320px;
	line-height: 1.75;
	box-shadow: none;
	z-index: 1;
	height: 57px;
}
.header_inner{
	position: fixed;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #fff;
	width: 100%;
	min-width: 320px;
	border-bottom: 1px solid #CCD0F1;
	z-index: 19;
}
.header_logo h1{
	padding-left: 15px;
	width: 90px;
}
.header_logo img{
	width: 100%;
}
.header_right ul{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	column-gap: 0;
	font-size: 10px;
	text-align: center;
}
.header_right ul li{
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;	
}
.header_right ul li a,
.header_right ul li #header_menu{
	padding-top: 10px;
	width: 56px;
	height: 56px;
	color: #333;
	font-weight: 500;
	text-decoration: none;
	box-sizing: border-box;
}
.header_right ul li i{
	display: block;
	font-size: 24px;
}
.header_right .header_login i,
.header_right .header_register i{
	color: #FC7D32;
}
.header_menu{
	width: auto;
	margin: 0;
}
.header_right .header_menu i{
	color: #2F7CFA;
}
#header_menu{
	background-color: #F7F8FF;
}
.header_right ul li #header_menu.active{
	background-color: #2F7CFA;
	color: #fff;
}
.header_right ul li #header_menu.active i{
	color: #fff;
}
/* ------------------------------------- */
/* ヘッダーメニュー */
/* ------------------------------------- */
.header_menu_list_close_wrapper{
	display: none;
	position: fixed;
	top: 57px;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 20;
}
.header_menu_list_wrapper{
	background-color: #fff;
	position: fixed;
	width: 85%;
	height: 100%;
	top: 57px;
	right: -90%;
	overflow-y: auto;
	z-index: 30;
}
.header_menu_list{
	padding-bottom: 80px;
	font-size: 16px;
}
.header_menu_list ul{
	background-color: #F7F8FF;
}
.header_menu_list ul li{
	position: relative;
}
.header_menu_list ul li::after{
	font-family: 'Font Awesome 6 Pro';
	content: '\f105';
	font-weight: 900;
	font-size: 18px;
	color: #4B80FA;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
}
.header_menu_list a{
	display: block;
	position: relative;
	padding: 10px 40px 10px 20px;
	width: 100%;
	color: #333;
	text-decoration: none;
	box-sizing: border-box;
}
.header_menu_list a::after{
	display: block;
	position: absolute;
	content: '';
	background-color: #CCD0F1;
	height: 1px;
	width: calc(100% - 40px);
	bottom: 0;
}
.header_menu_list ul li:last-child a::after{
	display: none;
	content: none;
}
.header_menu_list li:last-of-type a{
	border-bottom: none;
}
.header_menu_list_wrapper .header_menu_list a .menu_beginner{
	width: 20px;
	margin-right: 5px;
	vertical-align: middle;
}
.header_menu_list_wrapper .header_menu_list a i{
	font-size: 16px;
	color: #2F7CFA;
	margin-right: 9px;
	vertical-align: middle;
	text-decoration: none;
}
.header_menu_close{
	margin-top: 20px;
	font-size: 16px;
	text-align: center;
	color: #2F7CFA;
}
.header_menu_close p {
	display: inline-block;
	text-decoration: underline;
	cursor: pointer;
}
.header_menu_close p i{
	font-size: 16px;
	margin-right: 5px;
	vertical-align: middle;
}
/* ------------------------------------- */
/* footer */
/* ------------------------------------- */
#footer {
	text-align: left;
	font-family:"Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size:14px;
	line-height:1.75;
	min-width: 320px;
}
.footer_inner{
	background-color: #303945;
	font-size: 12px;
	line-height: 1.75;
	text-align: center;
	color: #fff;
	padding: 0 0 30px;
	min-width: 320px;	
}
.footer_inner a{
	color: #fff;
	text-decoration: none;
}
.footer_page_top{
	background-color: #475566;
}
.footer_page_top .page_top{
	display: block;
	width: 100%;
	padding: 20px 0;
	color: #fff;
	vertical-align: middle;
}
.footer_page_top .page_top i{
	font-size: 14px;
	margin-right: 5px;
}
.footer_navi .footer_navi_list li{
	float: none;
	width: 100%;
	margin-right: 0;
	border-bottom: 1px solid #475566;
}
.footer_navi{
	width: 100%;
	margin-bottom: 0;
}
.footer_navi_list a{
	display: block;
	padding: 20px 0;
}
.footer_navi_terms li{
	font-size: 10px;
	border-bottom: 1px solid #475566;
}
.footer_navi .footer_navi_terms li{
	position: relative;
	float: left;
	width: 33.125%;
	margin-right: 0;
}
.footer_navi_terms li:nth-child(2n){
	border-left: 1px solid #475566;
	border-right: 1px solid #475566;
}
.footer_navi_terms li a{
	display: block;
	padding: 15px 0;
}
.footer_bottom_area{
	width: 100%;
}
.footer_bottom_sns_link{
	padding: 20px 15px;
	border-bottom: 1px solid #475566;
	line-height: 30px;
	color: #a3b1bf;
}
.footer_bottom_sns_link p{
	float: left;
}
.footer_bottom_sns_link ul{
	float: right;
}
.footer_bottom_sns_link ul li{
	display: inline-block;
	margin-right: 5px;
	text-align: right;
}
.footer_bottom_sns_link ul li:last-child{
	margin-right: 0;
}
.footer_bottom_sns_link img{
	height: 30px;
	width: 30px;
}
.footer_bottom_logo_area{
	padding: 20px 15px;
	color: #a3b1bf;
}
.footer_pmark{
	float: left;
	display: block;
	background-color: #fff;
	border-radius: 2px;
	padding: 2px;
	width: 50px;
}
.footer_pmark img{
	width: 50px;
}
.footer_bitcash{
	width: 110px;
	float: right;
	text-align: right;
	vertical-align: top;
}
.footer_bitcash img{
	width: 100%;
}
.footer_bitcash p{
	margin-top: 1px;
}
.footer_sv_position{
	background-color: #303945;
	width: 100%;
	text-align: right;
	display: block;
}
/* ------------------------------------- */
/* members_content */
/* ------------------------------------- */
.members_content_body_wrapper{
	background-color: #ff711f;
}
.members_content_body{
	width: 100%;
	box-sizing: border-box;
	padding: 40px 20px 30px;
	text-align: center;
	color: #fff;
	position: relative;
}
.members_top{
	background-color: #ff711f;
	display: block;
	width: 120px;
	margin: 0 auto;
	font-size: 14px;
	text-align: center;
	line-height: 30px;
	padding-bottom: 2px;
	position: absolute;
	top: -15px;
	left: 0;
	right: 0;
	border-radius: 20px;
}
.members_content_body h2{
	font-weight: 300;
	font-size: 22px;
	margin-bottom: 20px;
}
.members_content_body .btn_register{
	background-color: #fff;
	display: block;
	width: 100%;
	line-height: 60px;
	margin: 0 auto 10px;
	font-size: 14px;
	text-align: center;
	color: #ff6900;
	border-radius: 2px;
	text-decoration: none;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
.members_more{
	color: #fff;
	font-size: 12px;
}
.members_more i{
	font-size: 12px;
	padding-left: 5px;
	vertical-align: baseline;
}
}
/* ------------------------------------- */
/* TOPへボタン */
/* ------------------------------------- */
#go_to_pagetop{
	position: fixed;
	bottom: 120px;
	right: 0;
	opacity: 0;
	-ms-filter: "alpha( opacity=0 )";
	filter:alpha(opacity=0);
	zoom:1;
	z-index: 9999;
}
#go_to_pagetop a{
	width: 46px;
	height: 24px;
	display: block;
	padding: 16px 20px;
	background: rgb(95,95,95);
	background: rgba(95,95,95,0.5);
	border-radius: 6px 0 0 6px;
}
@media screen and (max-width: 768px){
	#go_to_pagetop a{
		width: 23px;
		height: 12px;
		padding: 10px 15px;
	}
}
#go_to_pagetop img{
	width: 100%;
	vertical-align: top;
}
#go_to_pagetop a:hover{
	background: rgba(95,95,95,0.4);
}