@charset "UTF-8";

/* エフェクト用 */
.fade_in {
	opacity : 0.0;
	transition : all 1500ms;
}
.fade_in.active {
	opacity : 1.0;
}
.scroll_in {
	opacity : 0.0;
	transform : translate(0, 30px);
	transition : all 1000ms;
}
.scroll_in_left {
	opacity : 1.0;
	transform : translate(-30px, 0);
	transition : all 1000ms;
}
.scroll_in_right {
	opacity : 1.0;
	transform : translate(30px, 0);
	transition : all 1000ms;
}
.scroll_in.active, .scroll_in_left.active, .scroll_in_right.active {
	opacity : 1.0;
	transform : translate(0, 0);
}

.scroll_in_right:nth-of-type(2), .scroll_in_left:nth-of-type(2), .scroll_in:nth-of-type(2), .fade_in:nth-of-type(2) {
	-moz-transition-delay:100ms;-webkit-transition-delay:100ms;
	-o-transition-delay:100ms;-ms-transition-delay:100ms;
}
.scroll_in_right:nth-of-type(3), .scroll_in_left:nth-of-type(3), .scroll_in:nth-of-type(3), .fade_in:nth-of-type(3) {
	-moz-transition-delay:200ms;-webkit-transition-delay:200ms;
	-o-transition-delay:200ms;-ms-transition-delay:200ms;
}
.scroll_in_right:nth-of-type(4), .scroll_in_left:nth-of-type(4), .scroll_in:nth-of-type(4), .fade_in:nth-of-type(4) {
	-moz-transition-delay:300ms;-webkit-transition-delay:300ms;
	-o-transition-delay:300ms;-ms-transition-delay:300ms;
}
.scroll_in_right:nth-of-type(5), .scroll_in_left:nth-of-type(5), .scroll_in:nth-of-type(5), .fade_in:nth-of-type(5) {
	-moz-transition-delay:400ms;-webkit-transition-delay:400ms;
	-o-transition-delay:400ms;-ms-transition-delay:400ms;
}
.scroll_in_right:nth-of-type(6), .scroll_in_left:nth-of-type(6), .scroll_in:nth-of-type(6), .fade_in:nth-of-type(6) {
	-moz-transition-delay:500ms;-webkit-transition-delay:500ms;
	-o-transition-delay:500ms;-ms-transition-delay:500ms;
}
.scroll_in_right:nth-of-type(7), .scroll_in_left:nth-of-type(7), .scroll_in:nth-of-type(7), .fade_in:nth-of-type(7) {
	-moz-transition-delay:600ms;-webkit-transition-delay:600ms;
	-o-transition-delay:600ms;-ms-transition-delay:600ms;
}
.scroll_in_right:nth-of-type(8), .scroll_in_left:nth-of-type(8), .scroll_in:nth-of-type(8), .fade_in:nth-of-type(8) {
	-moz-transition-delay:700ms;-webkit-transition-delay:700ms;
	-o-transition-delay:700ms;-ms-transition-delay:700ms;
}
.scroll_in_right:nth-of-type(9), .scroll_in_left:nth-of-type(9), .scroll_in:nth-of-type(9), .fade_in:nth-of-type(9) {
	-moz-transition-delay:700ms;-webkit-transition-delay:700ms;
	-o-transition-delay:700ms;-ms-transition-delay:700ms;
}
.cl_blue {
	color: #24f;
}
.cl_red {
	color: #f42;
}


body {
	color: #000;
	box-sizing: border-box;
	margin: 0;
	font-family:  'Montserrat', 'Hiragino Kaku Gothic ProN','Hiragino Sans','メイリオ','Lucida Grande',Verdana,sans-serif;
	font-size: 18px;
	line-height: 1.6;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-left: 15px #020202 solid;
	border-right: 15px #020202 solid;
}
img, video {
	max-width: 100%;
}
ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
li {
	margin: 5px 0;
}
a {
	text-decoration: none;
	color: #B50018;
}
hr {
	border: none;
	border-top: 1px #AAA solid;
	height: 0;
	margin: 20px 0;
}
#loading_bg {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background: rgba(0,0,0,0.3);
	z-index: 9999;
}
#loading {
	display: none;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 300px;
	height: 300px;
	text-align: center;
	z-index: 10000;
	transform: translate(-50%,-50%);
}
@media screen and (max-width: 767px) {
	#loading {
		width: 250px;
		height: 250px;
	}
}
.pagetop {
	position: fixed;
	bottom: 15px;
	right: 30px;
	z-index: 999;
	background: rgba(0,0,0,1.0);
	color: #fff;
	padding: 6px 10px;
	border-radius: 40px;
	cursor: pointer;
}

.pc_none { display: none; }
.sp_none { display: block; }

header{
	width: 100%;
	height: 100px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	display: flex;
	justify-content: space-between;
	border-top: 15px #020202 solid;
	border-left: 15px #020202 solid;
}
footer {
	text-align: center;
}
footer .copyright {
	background: #020202;
	color: #fff;
	padding: 7px;
	font-size: 0.9rem;
	margin-top: 20px;
}
.box_logo {
	background: #fff;
	width: 180px;
	padding: 7px 20px;
	position: relative;
	text-align: right;
}
.box_logo img {
	width: 180px;
}
.box_logo:after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 0;
	height: 0;
	border-style: none;
	border-width: 40px 0px 115px 115px;
	border-color: transparent transparent #020202 transparent;
}
.box_menu {
	background: #FFF;
	width: calc(100% - 180px);
	padding: 8px 10px;
	position: relative;
	box-sizing: border-box;
}
.box_menu_bg {
	position: absolute;
	background-image: url(images/logo_white.png);
	background-repeat: no-repeat;
	background-position: center;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.9);
	background-blend-mode: lighten;
	z-index: -1;
	display: none;
}
.box_menu ul {
	display: flex;
	gap: 3px;
	height: 100%;
	justify-content: flex-end;
	align-items: center;
}
.box_menu li {
	width: 20%;
	text-align: center;
}
.box_menu img {
	height: 45px;
	display: none;
}
.box_menu a:hover>img {
	transform: scale(1.2);
	transition: 0.5s;
}
.box_menu a {
	display: block;
	color: #020202;
}
.box_menu .active {
	background: #020202;
	color: #fff;
	padding:8px 0px;
	border-radius: 20px;
}
.box_menu a:hover {
	transition: 0.3s;
	background: #020202;
	color: #fff;
	padding:8px 0px;
	border-radius: 20px;
}
.box_menu span {
	font-size: 0.85rem;
}

main {
	padding-top: 100px;
	overflow: hidden;
	min-height: calc(100vh - 281px);
}
.center {
	display: block;
	text-align: center;
}
.bold {
	font-weight: bold;
}
.large {
	font-size: 1.3rem;
}


p {
	margin: 1.2em 0;
}
h1 {
	margin: 0;
}
h2 {
	font-size: 1.6vw;
	line-height: 1.4;
	margin: 0 0 35px;
}
h2 span {
	font-size: 1.3vw;
}
h2 .fa-twitter {
	color: #1da1f2;
	margin-right: 10px;
}
h3 {
	font-size: 1.6vw;
	line-height: 1.4;
	margin: 0 0 30px;
	text-align: center;
	padding-bottom: 5px;
	border-bottom: 1px #020202 solid;
}
h4 {
	font-size: 1.3vw;
	font-weight: normal;
	margin: 10px 0;
}
table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 35px;
}
table tbody tr:nth-child(even) {
	background: #fffffb;
}
thead {
	color: #a32;
	background: #fff8f0;
}
th, td {
	padding: 6px 10px;
	border: 1px #ccc solid;
	text-align: center;
}


section {
	max-width: 1200px;
	margin: 60px auto;
	box-sizing: border-box;
}
.box_banner {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	text-align: center;
}
.box_banner div {
	width: 32%;
}
.box_banner div img {
	max-width: 320px;
	max-height: 100px;
	display: block;
	margin: 0 auto;
	padding-bottom: 5px;
}
.box_banner a {
	font-size: 0.9rem;
}
.box_shop_banner {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	text-align: center;
	margin-top: 40px;
}
.box_shop_banner div {
	width: 18%;
}
.hover_opacity:hover {
	opacity: 0.8;
	transition: 0.5s;
}
.hover_scale:hover {
	transform: scale(1.02);
	transition: 0.5s;
}
main h1 {
	background: #020202;
	color: #fff;
	padding: 20px;
	text-align: center;
	font-size: 2.2rem;
	letter-spacing: 3px;
	display: none;
}
main h1 img {
	height: 48px;
	position: relative;
	top: 7px;
	margin-right: 20px;
}
main h2 {
	text-align: center;
	margin-top: -130px;
	padding-top: 130px;
}
main h2 div {
	background: #020202;
	color: #fff;
	padding: 7px;
}
main h3 {
	margin-top: -130px;
	padding-top: 130px;
}
.box_league {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.box_league li{
	width: 32%;
}
.box_league a {
	display: block;
	color: #020202;
	border: 3px #020202 solid;
	text-align: center;
	padding: 5px;
	font-size: 1.2rem;
	font-weight: bold;
	position: relative;
}
.box_league a:after {
	content: '';
	position: absolute;
	bottom: 5px;
	left: calc(100% - 35px);
	border-bottom: 30px solid #020202;
	border-left: 30px solid transparent;
}
.box_league span {
	position: relative;
	z-index: 3;
	color:#020202;
}
.box_league:hover > span{
	color:#fff;
}
.box_league a:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	background:#020202;
	width: 100%;
	height: 100%;
	transition: transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
	transform: scale(0, 1);
	transform-origin: right top;
}
.box_league a:hover:before{
	transform-origin:left top;
	transform:scale(1, 1);
}
.box_league a:hover > span {
	color: #fff;
}
.box_league a:hover:after {
	border-bottom: 30px solid #fff;
	z-index: 3;
	transition: 0.4s;
}
.league_result {
	margin-bottom: 20px;
}
.league_result li {
	width: 49.5%;
	display: inline-block;
	vertical-align: top;
	padding: 3px;
	box-sizing: border-box;
}

.box_player {
	display: flex;
	flex-wrap: wrap;
	text-align: center;
}
.box_player li {
	width: 50%;
	line-height: 0;
}
.box_pro {
	display: flex;
	flex-wrap: wrap;
}
.box_pro li {
	width: 20%;
	line-height: 0;
}
.box_pro img {
	width: 100%;
	height: 340px;
	object-fit: cover;
}
.box_pro div {
	text-align: center;
	margin: 20px 0;
}

.x_link{
    display: inline-block;
    font-size: 1.5rem;
}

.rule_ul {
	margin: 30px 0;
}
.rule_ul li:before {
	content: "●";
	margin-right: 7px;
}
.box_2col {
	display: flex;
	gap: 25px;
}
.box_2col div {
	width: 50%;
	margin-bottom: 25px;
}
.tbl_point thead tr:nth-of-type(1) {
	font-size: 1.6rem;
	color: #fff;
}
.tbl_point thead tr:nth-of-type(2) {
	background: #ffc;
	color: #111;
}
.content {
	margin-bottom: 40px;
}
.tokuten_menu {
	display: flex;
	gap: 20px;
}
.tokuten_menu li {
	width: 20%;
}
.tokuten_menu li a {
	display: block;
	padding: 10px;
	border: 1px #ccc solid;
	text-align: center;
	color: #000;
}
.tokuten_menu li a:hover {
	background: #f9f9f9;
	transition: 0.5s;
}
.box_tokuten {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
}
.box_tokuten li {
	width: 32%;
	border: 1px #ccc solid;
	border-radius: 10px;
	box-shadow: 1px 1px 2px #9e9e9e;
	position: relative;
}
.box_tokuten li:hover {
	opacity: 0.8;
	transition: opacity 0.3s ease;
}
.box_tokuten h2 {
	font-size: 1.3rem;
	padding: 0 10px 10px;
	margin: 0;
	height: 60px;
	color: #020202;
	display: flex;
	align-items: center;
	justify-content: center;
}
.box_tokuten img {
	border-radius: 9px 9px 0 0;
	display: block;
	width: 100%;
	height: 150px;
	object-fit: contain;
	padding: 10px;
	box-sizing: border-box;
}
.tokuten_area {
	display: block;
	text-align: center;
	position: relative;
	top: 10px;
}
.tokuten_renraku {
	color: #020202;
	margin: 0 60px 20px;
	text-align: center;
	font-size: 1.0rem;
}
.tokuten_renraku.marchao dl {
	justify-content: center;
	margin: 15px 0 31px;
}
.tokuten_data {
	border-radius: 10px;
	height: 90px;
	padding: 10px 14px;
	margin: 0 10px 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #f4f4f4;
	color: #222;
	text-align: center;
	position: relative;
	z-index: 0;
}
.tokuten_data p {
	margin: 0;
	font-size: 1.05rem;
	line-height: 1.4;
}
.tokuten_data small {
	display: block;
	margin-top: 3px;
}
.tokuten_kigen {
	display: block;
	background: #282828;
	color: #fff;
	border-radius: 0 0 10px 10px;
	text-align: center;
	padding: 7px;
}
.tokuten_renraku dl {
	display: flex;
	gap: 20px;
}
.tokuten_renraku dd {
	margin-left: 0;
}
.tokuten_renraku a {
	position: relative;
	z-index: 2;
}
.tokuten_link:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.tbl_membership {
	margin-bottom: 25px;
}
.tbl_membership tr:nth-child(even) {
	background: none;
}
.tbl_membership th {
	background: #f9f9f9;
}
.tbl_membership td {
	text-align: left;
}
.title_membership {
	border-bottom: none;
	margin-bottom: 10px;
}
.youtube {
	display: block;
	margin: 0 auto;
	width: 1000px;
	aspect-ratio: 16 / 9;
}
.waku_orange {
	border-style: solid;
	border-color:orange;
	padding: 10px 15px;
	margin-bottom: 20px;
	background-color: #fffff0;
}

.waku_green{
	border: 3px solid green;
	border-radius: 10px 15px;
	background-color: #fffff0;
	padding: 10px;
	margin-top:30px;
	font-weight: bold;
}
.tbl_winner tr {
	background: #fff !important;
}
.tbl_winner th {
	width: 30%;
	background: #FFFFE5;
}
.tbl_winner td {
	width: 70%;
}
.winner i {
	color: #fc2;
	margin-right: 7px;
}
.top_img {
	text-align: center;
}
.top_img img {
	max-height: 800px;
}
.tbl_company {
}
.tbl_company th {
	background: #ffc;
}
.tbl_company td {
	background: #fff;
	text-align: left;
}
.box_sponser {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 40px;
	justify-content: center;
}
.box_sponser li {
	width: 23.5%;
}
.box_sponser li a {
	display: block;
	text-align: center;
	font-size: 0.9rem;
}
.box_sponser li img {
	width: 100%;
	height: 100px;
	object-fit: contain;
	padding-bottom: 5px;
}

.box_queens {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 40px;
}
.box_queens li {
	width: 32.5%;
	margin-bottom: 15px;
}
.box_queens li a {
	display: block;
	text-align: center;
	font-size: 0.9rem;
}
.box_queens li img {
	width: 100%;
	height: 180px;
	object-fit: contain;
	padding-bottom: 5px;
}
.box_queens strong {
	display: block;
	color: #FE58DE;
}
.menu_sp {
	display: none;
}
.lity-image img {
	max-height: 100vh !important;
}
.img_banner:hover {
	opacity: 0.8;
	transition: 0.5s;
}


/* タブレット */
@media screen and (max-width: 1200px) {
	section {
		margin: 60px 10px;
	}
	.box_tokuten li {
		width: 30%;
	}
}
@media screen and (max-width: 1024px) {
	body {
		font-size: 0.9rem;
	}
	header {
		height: 80px;
	}
	.box_logo {
		width: 25%;
	}
	.box_logo img {
		margin-top: 10px;
	}
	.box_logo:after {
		border: none;
	}
	.box_menu {
		width: 75%;
	}
	.box_menu img {
		height: 35px;
	}
	main {
		padding-top: 95px;
	}
	main h1 {
		font-size: 2.0rem;
		letter-spacing: 3px;
	}
	section {
		width: 100%;
		padding: 12px;
	}
	.box_league li {
		width: 48%;
	}
	.box_tokuten h2 {
		font-size: 1.2rem;
	}
}

/* スマホ */
@media screen and (min-width: 768px) {
header{
	width: 100%;
	height: 100px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	border-top: 15px #020202 solid;
	border-left: 15px #020202 solid;
	border-right: 15px #020202 solid;
	box-sizing: border-box;
	background-color: #FFF;
}
.header_wrap {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	height: 85px;
	display: flex;
	justify-content: space-between;
}
.box_logo img {
	width: 180px;
}
}





@media screen and (max-width: 767px) {
	body {
		font-size: 0.9rem;
	}
	.pc_none { display: block; }
	.sp_none { display: none; }
	
	.pagetop {
		bottom: 7px;
		right: 20px;
		width: 18px;
		height: 20px;
		border-radius: 0;
		font-size: 1.5rem;
		text-align: center;
	}
	header {
		height: 60px;
		border-left: none;
		justify-content: center;
		position: fixed;
		width: calc(100% - 30px);
		background: #fff;
		top: 0;
		left: 15px;
	}
	footer {
		font-size: 0.65rem;
	}
	footer img {
		width: 200px;
	}
	footer .copyright {
		font-size: 0.6rem;
		margin-top: 15px;
	}
	main {
		padding-top: 75px;
		min-height: calc(100vh - 335px);
	}
	main h1 {
		background: #020202;
		color: #fff;
		padding: 20px;
		text-align: center;
		font-size: 2.2rem;
		letter-spacing: 4px;
		display: block;
	}
	.box_logo {
		width: 100%;
		padding: 0;
		text-align: center;
	}
	.box_logo img {
		width: 200px;
		margin-top: 7px;
	}
	.box_menu {
		display: none;
		position: fixed;
		bottom: 0;
		left: 0;
		z-index: 999;
		width: 100%;
		padding: 10px;
		background: rgba(0,0,0,0.9);
	}
	.box_menu a:hover {
		background: none;
		border-radius: 0;
	}
	.box_menu span {
		font-size: 0.7rem;
		color: #FFF;
		display: block;
		margin-top: 2px;
	}
	.box_menu a:hover {
		padding: 0;
	}
	.box_menu_bg {
		background-blend-mode: color;
		display: block;
	}
	.box_menu ul {
		gap: 3px;
		margin-bottom: 7px;
		justify-content: flex-start;
		flex-wrap: wrap;
	}
	.box_menu li {
		width: 24.3%;
	}
	.box_menu img {
		height: 22px;
		display: inline;
	}
	.box_menu .menu_top {
		background: #fff;
		font-size: 1rem;
		text-align: center;
		font-weight: bold;
	}
	.box_menu .menu_top i {
		font-size: 1.1rem;
		margin-right: 5px;
	}
	.box_menu .menu_top a {
		color: #000;
		display: block;
		padding: 3px;
	}
	.box_menu a:hover>img {
		transform: none;
	}
	.box_menu .active {
		padding: 0;
	}
	
	section {
		margin: 12px auto;
	}
	h2 {
		font-size: 5vw;
		margin-bottom: 15px;
	}
	h2 span {
		font-size: 4vw;
	}
	h3 {
		font-size: 5vw;
		margin-bottom: 15px;
	}
	h4 {
		font-size: 4.5vw;
		margin-bottom: 3px;
	}
	.large {
		font-size: 1.1rem;
	}

	main h1 {
		font-size: 1.2rem;
		padding: 7px;
		letter-spacing: 2px;
	}
	main h1 img {
		height: 26px;
		top: 4px;
		margin-right: 10px;
	}
	table {
		font-size: 0.8rem;
		margin-bottom: 25px;
	}
	th, td {
		padding: 5px;
	}
	.box_player {
		gap: 3px;
	}
	.box_player li {
		width: 49%;
	}
	.box_pro {
		gap: 3px;
	}
	.box_pro li {
		width: 49%;
	}
	.box_pro img {
		height: 230px;
	}
	.box_pro div {
		margin: 15px 0 5px;
	}
	.box_league {
		gap: 10px;
	}
	.box_league li {
		width: 100%;
	}
	.box_league a {
		font-size: 1.0rem;
	}
	.box_league a:after {
		left: calc(100% - 34px);
		bottom: 3px;
		border-bottom: 30px solid #000;
		border-left: 30px solid transparent;
	}
	.box_league a:hover:after {
		border-bottom: 30px solid #fff;
	}
	.league_result li:not(:nth-of-type(1)) {
		display: block;
		width: 100%;
		padding: 0;
	}
	main h2, main h3 {
		margin-top: -75px;
		padding-top: 75px;
	}
	.rule_ul {
		margin: 15px 0;
	}
	.box_2col {
		display: block;
	}
	.box_2col div {
		width: 100%;
		margin-bottom: 10px;
	}
	.tbl_point thead tr:nth-of-type(1) {
		font-size: 1.2rem;
	}
	.content {
		margin-bottom: 25px;
	}
	.tokuten_menu {
		flex-wrap: wrap;
		gap: 1px 5px;
		margin: 0;
	}
	.tokuten_menu li {
		width: 32%;
		margin: 2px 0;
	}
	.tokuten_menu li a {
		padding: 6px 10px 4px;
	}
	.box_tokuten {
		gap: 9px;
	}
	.box_tokuten li {
		width: 48%;
	}
	.box_tokuten img {
		height: 80px;
		padding: 7px;
	}
	.tokuten_area {
		top: 0;
		margin-top: 3px;
	}
	.box_tokuten h2 {
		font-size: 0.95rem;
		padding: 0 10px 3px;
		height: 50px;
	}
	.tokuten_data {
		margin: 0 7px 7px;
		padding: 7px;
		height: 85px;
	}
	.tokuten_data.overflow {
		overflow-y: auto;
		align-items: start;
		z-index: 3;
	}
	.tokuten_data p {
		font-size: 0.85rem;
	}
	.tokuten_kigen {
		padding: 5px;
	}
	.tokuten_renraku {
		margin: 0 5px 12px;
		font-size: 0.85rem;
	}
	.tokuten_renraku dl {
		display: block;
		line-height: 1.4;
		margin: 5px 0;
		gap: 7px;
		justify-content: center;
	}
	.tokuten_renraku dl:nth-of-type(1) {
		display: flex;
	}
	.tokuten_renraku.marchao dl {
		margin: 23px 0 40px;
	}
	.googlemaps {
		height: 220px;
	}
	.tbl_membership {
		margin-bottom: 15px;
	}
	.youtube {
		width: 100%;
	}
	.box_banner {
		gap: 10px;
	}
	.box_banner div {
		width: 48%;
	}
	.box_banner div img {
		max-width: 100%;
		height: 100px;
		object-fit: contain;
	}
	.box_banner a {
		font-size: 0.8rem;
	}
	.box_shop_banner {
		gap: 10px;
	}
	.box_shop_banner div {
		width: 48%;
	}
	.box_sponser li {
		width: 47%;
	}
	.box_sponser li a {
		font-size: 0.8rem;
	}
	.box_queens li {
		width: 48%;
	}
	.box_queens li a {
		font-size: 0.8rem;
	}
	.box_queens li img {
		height: 120px;
	}
	.menu_sp {
		display: block;
	}
	.menu_sp_button {
		position: absolute;
		top: 18px;
		right: 15px;
		z-index: 999;
		font-size: 1.6rem;
	}
	.box_menu_sp {
		position: fixed;
		width: 100%;
		height: 100vh;
		left: 100%;
		top: 75px;
		background: rgba(0,0,0,0.85);
		z-index: 998;
	}
	.box_menu_sp.show {
		transform : translateX(-100%);
		transition : all 500ms;
	}
	.box_menu_sp.hide {
		transform : translateX(0);
		transition : all 500ms;
	}
	.box_menu_sp li {
		border-bottom: 1px #fff solid;
	}
	.box_menu_sp li i {
		margin-right: 10px;
	}
	.box_menu_sp li a {
		display: block;
		padding: 10px 25px;
		color: #fff;
	}
	.line_icon {
		width: 24px;
	}
	.X_icon {
		width: 16px;
	}
	.x_link{
   	 	display: inline-block;
  	 	font-size: 0.6rem;
	}
	.res_none{
		display: none;
	}
}