@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Plus+Jakarta+Sans:wght@200..700&display=swap');
* {
		margin: 0;
		padding: 0;
}
html {
		overflow-y: scroll;
}
img {
		border: none;
		vertical-align: top;
}
body {
		color: #ddd;
		background: #1e1e1e;
		font-size: 15px;
		font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
		line-height: 1;
		-webkit-text-size-adjust: 100%;
		-webkit-font-smoothing: antialiased;
}
@media(max-width: 767px) {
		body {
				font-size: 14px;
		}
}
h1, h2, h3, h4, h5, p, li {
		font-feature-settings: "palt";
		letter-spacing: 0.08em;
}
.page_shell {
		max-width: 2600px;
		margin: 0 auto;
}
/* ============== */
header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 85px;
		z-index: 3500
}
.header_inner {
		padding: 30px 40px;
		display: flex;
		align-items: center;
		justify-content: space-between;
}
.header_logo {
		width: 57px;
		transition: opacity 0.3s;
}
.header_logo img {
		width: 57px;
		height: auto;
		transition: filter 0.2s;
}
.header_logo.isDark img {
		filter: brightness(0.2)
}
.header_logo.logoLight img, .header_logo.isLight img {
		filter: brightness(1) !important
}
.header_logo.isOff {
		opacity: 0;
		pointer-events: none;
}
.global_nav {
		width: 500px;
		height: 50px;
		position: relative;
		cursor: pointer;
		overflow: hidden;
		transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.global_nav.navClose {
		width: 50px;
		transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.global_nav::before {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		height: 50px;
		width: 100%;
		background: #323232;
		border-radius: 60px;
		transform-origin: right center;
		z-index: 0
}
.global_nav.navClose ul {
		opacity: 0;
		transition: opacity 0.3s, 0.15s;
}
.global_nav .nav_trigger {
		height: 20px;
		width: 20px;
		position: absolute;
		top: 15px;
		right: 15px;
		z-index: 5;
		pointer-events: none;
}
.global_nav .nav_trigger::before, .global_nav .nav_trigger::after {
		content: '';
		display: block;
		position: absolute;
		top: 9px;
		left: 0;
		width: 20px;
		height: 2px;
		background: #ddd;
		transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s;
}
.global_nav .nav_trigger::before {
		transform: scaleX(0)
}
.global_nav .nav_trigger::after {
		transform: rotate(90deg) scaleX(0);
}
.global_nav.navClose .nav_trigger::before {
		transform: scaleX(1);
		transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
		transition-delay: 0.25s
}
.global_nav.navClose .nav_trigger::after {
		transform: rotate(90deg) scaleX(1);
		transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
		transition-delay: 0.25s
}
.global_nav ul {
		display: flex;
		align-items: center;
		justify-content: space-between;
		height: 50px;
		list-style: none;
		position: relative;
		z-index: 1;
		padding: 0 28px;
		top: -1px;
}
.global_nav ul li {
		font-family: "Plus Jakarta Sans", sans-serif;
		font-size: 14px;
		font-weight: 300;
		letter-spacing: 0;
}
.global_nav ul li span, footer li span {
		position: relative;
}
.global_nav ul li span::after, footer li span::after {
		content: '';
		display: block;
		position: absolute;
		bottom: -4px;
		left: 0;
		width: 100%;
		height: 1px;
		background: #ddd;
		transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
		transform: scaleX(0);
		transform-origin: left center;
}
.global_nav a {
		color: #fff;
		text-decoration: none;
}
@media (hover: hover) {
		.global_nav:hover {
				width: 500px;
		}
		.global_nav.navClose:hover ul, .global_nav:hover ul {
				opacity: 1;
				transition: opacity 0.3s;
				transition-delay: 0.15s
		}
		.global_nav:hover .nav_trigger::before {
				transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
				transition-delay: 0;
				transform: scaleX(0);
		}
		.global_nav:hover .nav_trigger::after {
				transform: rotate(90deg) scaleX(0);
				transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
				transition-delay: 0
		}
		.global_nav li a:hover span::after, footer li a:hover span::after {
				transform: scaleX(1);
		}
}
@media(min-width: 841px) {
		nav.sp_nav {
				display: none
		}
		.navBoard {
				display: none !important;
		}
}
@media(max-width: 840px) {
		html.bodyLock {
				overflow: hidden
		}
		nav.global_nav {
				display: none !important
		}
		nav::before {
				display: none;
		}
		header {
				height: 90px;
		}
		.header_inner {
				padding: 5px 0 5px 30px;
		}
		nav.sp_nav {
				position: relative;
				width: 110px;
				height: 80px;
				cursor: pointer;
		}
		.sp_nav .sp_nav_trigger {
				position: absolute;
				top: 15px;
				right: 30px;
				width: 50px;
				height: 50px;
				background: #282828;
				border-radius: 50%;
				pointer-events: none;
				transition: background 0.3s;
		}
		.sp_nav.navOpen .sp_nav_trigger {
				background: #ddd;
		}
		.sp_nav .sp_nav_trigger::before, .sp_nav .sp_nav_trigger::after {
				content: '';
				display: block;
				position: absolute;
				width: 20px;
				height: 1px;
				left: 15px;
				top: 24.5px;
				transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
				background: #ddd;
		}
		.sp_nav .sp_nav_trigger::after {
				transform: rotate(90deg);
		}
		.sp_nav_trigger .sp_nav_trigger_bar {
				position: absolute;
				width: 20px;
				height: 1px;
				left: 15px;
				top: 24.5px;
		}
		.sp_nav_trigger .sp_nav_trigger_bar:nth-child(1) {
				transform: rotate(45deg);
		}
		.sp_nav_trigger .sp_nav_trigger_bar:nth-child(2) {
				transform: rotate(-45deg);
		}
		.sp_nav_trigger_bar::before {
				content: '';
				display: block;
				position: absolute;
				top: 0;
				left: 0;
				width: 100%;
				height: 1px;
				background: #ddd;
				transform: scaleX(0);
				opacity: 0;
		}
		.sp_nav.navOpen .sp_nav_trigger_bar::before {
				background: #1e1e1e;
		}
		.sp_nav_trigger .sp_nav_trigger_bar:nth-child(1)::before {
				transform-origin: right center;
				transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
		}
		.sp_nav_trigger .sp_nav_trigger_bar:nth-child(2)::before {
				transform-origin: left center;
				transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
				transition-delay: 0.2s;
		}
		nav:hover .nav_trigger::before {
				transform: scaleX(1);
		}
		nav:hover .nav_trigger::after {
				transform: rotate(90deg) scaleX(1);
		}
		.navOpen .sp_nav_trigger_bar::before {
				opacity: 1;
				transform: scaleX(1)
		}
		.nav_trigger::before {
				transform: scaleX(1);
				transition-delay: 0s !important
		}
		.nav_trigger::after {
				transform: rotate(90deg) scaleX(1);
				transition-delay: 0.1s !important
		}
		nav.navOpen .sp_nav_trigger::before {
				transform: scaleX(0)
		}
		nav.navOpen .sp_nav_trigger::after {
				transform: rotate(90deg) scaleX(0);
		}
		.navBoard {
				position: fixed;
				top: 0;
				left: 0;
				width: 100%;
				z-index: 2000;
				display: none;
				background: #1e1e1e;
		}
		.navBoard_inner {
				display: flex;
				align-items: center;
				box-sizing: border-box;
				padding-left: 120px;
		}
		.navBoard_inner ul {
				position: relative;
				top: -4vh
		}
		.navBoard_inner li {
				list-style: none;
				font-family: "Plus Jakarta Sans", sans-serif;
				font-size: 10vw;
				font-weight: 400;
				letter-spacing: 0;
		}
		.navBoard_inner li a {
				padding: 1.3vh 0;
				display: inline-block;
		}
		.navBoard_inner ul li {
				margin-bottom: 0;
		}
		.navBoard_inner li a {
				color: #ddd;
				text-decoration: none;
		}
		.navBoard_inner li .cover {
				position: relative;
		}
		.navBoard_inner li .cover::after {
				content: '';
				display: block;
				position: absolute;
				top: 0;
				left: 0;
				width: calc(100% + 50px);
				height: 100%;
				background: #1e1e1e;
				opacity: 0.8;
				transition: all 0.4s;
		}
		.isVisible .navBoard_inner li .cover::after {
				animation: navBoardList 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
		}
		.isVisible .navBoard_inner li:first-child .cover::after {
				animation-delay: 0.17s
		}
		.isVisible .navBoard_inner li:nth-child(2) .cover::after {
				animation-delay: 0.22s
		}
		.isVisible .navBoard_inner li:nth-child(3) .cover::after {
				animation-delay: 0.27s
		}
		.isVisible .navBoard_inner li:nth-child(4) .cover::after {
				animation-delay: 0.32s
		}
		.isVisible .navBoard_inner li:nth-child(5) .cover::after {
				animation-delay: 0.37s
		}
		.isVisible .navBoard_inner li:nth-child(6) .cover::after {
				animation-delay: 0.42s
		}
		.isVisible .navBoard_inner li:nth-child(7) .cover::after {
				animation-delay: 0.47s
		}
		.navBoard_inner li .cover .nav_icon_plus {
				position: absolute;
				width: 16px;
				height: 16px;
				right: -25px;
				top: 6px;
		}
		.navBoard_inner li .cover .nav_icon_plus .nav_icon_plus_bar {
				position: absolute;
				height: 3px;
				width: 16px;
				background: #ddd;
				left: 0;
				top: 6.5px;
		}
		.navBoard_inner li .cover .nav_icon_plus .nav_icon_plus_bar:nth-child(2) {
				transform: rotate(90deg)
		}
}
@media(max-width: 767px) {
		.navBoard_inner li .cover .nav_icon_plus {
				width: 13px;
				height: 13px;
				right: -20px;
				top: 6px;
		}
		.navBoard_inner li .cover .nav_icon_plus .nav_icon_plus_bar {
				height: 3px;
				width: 13px;
				top: 5px;
		}
}
@keyframes navBoardList {
		0% {
				transform: translateX(0)
		}
		100% {
				transform: translateX(70vw);
		}
}
@media(max-width: 767px) {
		header {
				height: 80px;
		}
		.header_inner {
				padding: 5px 0 5px 20px;
		}
		nav.sp_nav {
				width: 80px;
				height: 70px;
		}
		nav.sp_nav .sp_nav_trigger {
				top: 15px;
				right: 20px;
				width: 40px;
				height: 40px;
		}
		nav.sp_nav .sp_nav_trigger::before, nav.sp_nav .sp_nav_trigger::after {
				width: 16px;
				left: 12px;
				top: 19.5px;
		}
		.sp_nav_trigger .sp_nav_trigger_bar {
				width: 16px;
				left: 12px;
				top: 19.5px;
		}
		.navBoard_inner {
				padding-left: 30px;
		}
		.navBoard_inner ul {
				top: -4vh
		}
		.navBoard_inner li {
				font-size: 12.8vw;
		}
		.navBoard_inner li a {
				padding: 1.4vh 0;
				display: inline-block;
		}
		.navBoard_inner li span .nav_icon_plus {
				position: absolute;
				width: 12px;
				height: 12px;
				right: -25px;
				top: 22px;
		}
		.navBoard_inner li span .nav_icon_plus .nav_icon_plus_bar {
				height: 2px;
				width: 12px;
				right: -18px;
				top: 0px;
		}
}
/* ============== */
.link_btn_center {
		display: flex;
		justify-content: center;
}
.link_btn_left {
		display: flex;
}
.link_btn {
		width: 214px;
		font-family: "Plus Jakarta Sans", sans-serif;
		font-size: 16px;
		font-weight: 400;
		letter-spacing: 0;
}
.link_btn.back_btn {
		width: 230px;
}
.link_btn a {
		display: flex;
		align-items: center;
		height: 50px;
		color: #ddd;
		text-decoration: none;
		border: 1px solid #3C3C3C;
		border-radius: 60px;
		padding-left: 24px;
		position: relative;
		overflow: hidden;
}
.link_btn.isBlk a {
		color: #1e1e1e;
}
.link_btn.back_btn a {
		display: flex;
		justify-content: center;
		align-items: center;
		padding-left: 0;
}
.link_btn a span {
		position: relative;
		z-index: 2;
		top: -1px;
}
.link_btn a::before, .link_btn a::after {
		content: '';
		display: block;
		position: absolute;
}
.link_btn a::before {
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		border-radius: 60px;
		background: #3C3C3C;
		transform-origin: left center;
		transform: scaleX(0);
		transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
		pointer-events: none;
}
.link_btn a::after {
		right: 25px;
		top: 16.4px;
		width: 17px;
		height: 20px;
		background-repeat: no-repeat;
		background-position: center center;
		background-size: 17px;
		background-image: url("../images/link_btn_arw_wht.png");
		z-index: 2
}
.link_btn.isBlk a::after {
		background-image: url("../images/link_btn_arw_blk.png");
}
.link_btn.blank_btn a::after {
		background-image: url("../images/link_btn_blank_wht.png");
		width: 14px;
		height: 14px;
		background-size: 14px;
}
.link_btn.back_btn a::after {
		right: inherit;
		left: 25px;
		background-image: url("../images/back_btn_arw_wht.png");
}
@media(max-width: 767px) {
		.link_btn {
				width: 150px;
				font-size: 12px;
		}
		.link_btn.back_btn {
				width: 190px;
		}
		.link_btn a {
				height: 40px;
				padding-left: 18px;
		}
		.link_btn a::after {
				right: 14px;
				top: 11.5px;
		}
		.link_btn.back_btn a::after {
				right: inherit;
				left: 15px;
		}
}
@keyframes arwRight {
		0% {
				opacity: 0;
				transform: translateX(-250px)
		}
		100% {
				opacity: 1;
				transform: translateX(0px)
		}
}
@keyframes arwLeft {
		0% {
				opacity: 0;
				transform: translateX(150px)
		}
		100% {
				opacity: 1;
				transform: translateX(0px)
		}
}
@keyframes arwBlank {
		0% {
				opacity: 0;
				transform: translateX(-50px) translateY(50px);
		}
		100% {
				opacity: 1;
				transform: translateX(0px) translateY(0px);
		}
}
@media (hover: hover) {
		.link_btn.isBlk a:hover {
				color: #ddd;
		}
		.link_btn.isBlk a:hover::after {
				background-image: url("../images/link_btn_arw_wht.png");
		}
		.link_btn a:hover::before {
				transform: scaleX(1);
		}
		.link_btn:not(.back_btn):not(.blank_btn) a:hover::after {
				animation: arwRight 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
		}
		.link_btn.back_btn a:hover::after {
				animation: arwLeft 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
		}
		.link_btn.blank_btn a:hover::after {
				animation: arwBlank 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
		}
}
/* ============== */
.darkSide {
		background: #1e1e1e;
		position: relative;
		/* z-index: 12 */
}
footer {
		padding-top: 80px;
		margin-bottom: 240px;
		font-family: "Plus Jakarta Sans", sans-serif;
		font-size: 15px;
		font-weight: 400;
		position: relative;
		background: #1e1e1e;
}
footer::before {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 1px;
		transform-origin: left center;
		background: #3C3C3C;
		transition: transform 2s cubic-bezier(0.16, 1, 0.3, 1);
}
@media(max-width: 767px) {
		footer::before {
				transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
		}
}
#toppage footer::before {
		transform: scaleX(0);
}
#toppage footer.footerActive::before {
		transform: scaleX(1)
}
footer p, footer li {
		letter-spacing: 0
}
footer a {
		color: #ddd;
		text-decoration: none;
}
.footer_inner {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		padding: 0 40px;
}
.footer_logo {
		width: 57px;
}
.footer_logo img {
		width: 100%;
		height: auto;
}
.footer_col_gr {
		display: flex;
		justify-content: flex-end;
}
.footer_nav, .footer_location {
		margin-right: 130px;
}
ul.footer_nav {
		display: flex;
		flex-flow: column;
		justify-content: space-between;
		list-style: none;
		font-size: 16px;
}
.footer_col h5 {
		font-family: "Plus Jakarta Sans", sans-serif;
		font-size: 16px;
		font-weight: 500;
		letter-spacing: 0;
		margin: 0 0 10px;
		color: #787878;
}
.footer_col p {
		color: #787878;
		line-height: 1.8;
		height: 110px;
		font-size: 14px;
}
@media(min-width: 2001px) {
		ul.footer_nav {
				font-size: 20px;
		}
		.footer_col h5 {
				font-size: 20px;
		}
		.footer_col p {
				font-size: 16px;
		}
}
.footer_col.footer_contact ul {
		height: 110px;
}
.footer_col.footer_contact li {
		list-style: none;
		color: #787878;
		line-height: 1.8;
		font-size: 14px;
}
.footer_txt {
		margin: 0 0 80px;
		padding: 0 40px;
		position: relative;
		z-index: 20;
}
.footer_txt img {
		width: 100%;
		height: auto
}
@media(max-width: 1300px) {
		.footer_nav, .footer_location {
				margin-right: 90px;
		}
}
@media(max-width: 1024px) {
		.footer_nav, .footer_location {
				margin-right: 60px;
		}
}
@media(max-width: 960px) {
		.footer_nav, .footer_location {
				margin-right: 20px;
		}
		ul.footer_nav {
				font-size: 15px;
		}
		.footer_col p {
				font-size: 12px;
		}
		.footer_col.footer_contact li {
				font-size: 12px;
		}
}
@media(min-width: 768px) {
		.footer_inner_upper_right {
				display: none
		}
}
@media(max-width: 767px) {
		footer {
				padding-top: 40px;
				margin-bottom: 60px;
		}
		.footer_inner {
				display: block;
				padding: 0 20px;
		}
		.footer_inner_upper {
				display: flex;
				justify-content: space-between;
				margin: 0 0 50px;
		}
		.footer_inner_upper_left, .footer_inner_upper_right {
				width: calc(50% - 10px);
		}
		.footer_logo {
				width: 57px
		}
		.footer_inner_upper_right ul.footer_nav {
				margin-right: 0;
		}
		.footer_inner_upper_right li {
				font-size: 15px;
				margin: 0 0 15px;
		}
		.footer_inner_upper_right ul li:last-child {
				margin-bottom: 0;
		}
		.footer_col_gr {
				display: flex;
				justify-content: space-between;
		}
		.footer_col_gr .footer_col.footer_nav {
				display: none
		}
		.footer_col_gr .footer_col {
				padding: 0;
				width: calc(50% - 10px);
		}
		.footer_col p {
				height: 160px;
				line-height: 1.8;
		}
		.footer_col.footer_contact ul {
				height: 160px;
		}
		.footer_col.footer_contact li {
				line-height: 1.8;
		}
		.footer_col.footer_contact li:first-child {
				margin-bottom: 10px;
		}
		.footer_txt {
				margin: 0 0 60px;
				padding: 0 20px;
		}
}
/* =========== */
.copyright {
		font-family: "Plus Jakarta Sans", sans-serif;
		font-size: 14px;
		font-weight: 200;
}
@media(max-width: 767px) {
		.copyright {
				font-size: 12px;
		}
}
.pagetop_wrap {
		display: flex;
		justify-content: center;
		padding: 20px 0 40px;
		position: relative;
		background: #1e1e1e;
}
.pagetop_wrap::after {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100px;
		z-index: -1;
		background: #1e1e1e;
		pointer-events: none;
}
.pagetop_wrap.second {
		padding: 0;
		overflow: hidden;
		height: 0px;
}
.pagetop_wrap .copyright {
		position: absolute;
		left: 40px;
		top: 70px;
}
.pagetop {
		width: 60px;
		cursor: pointer;
		position: relative;
		z-index: 5010;
		transition: all 0.4s;
}
.bodyLock .pagetop {
		z-index: 0
}
.pagetop img {
		width: 100%;
		height: auto;
}
.pagetop.goTop {
		display: block;
		animation: goTop 1.5s linear forwards;
}
.goSecond {
		animation: goSecond 1.0s ease-out forwards;
}
@keyframes goTop {
		0% {
				bottom: 0vh;
				position: fixed;
				opacity: 1;
		}
		50%, 85% {
				bottom: 40vh;
				position: fixed;
				opacity: 1;
		}
		100% {
				bottom: 100vh;
				position: fixed;
		}
}
@keyframes goSecond {
		0% {
				transform: scale(1);
				opacity: 0;
				bottom: -200px;
				position: fixed;
		}
		20% {
				opacity: 0;
				bottom: -200px;
				position: fixed;
		}
		30% {
				transform: scale(1);
		}
		50% {
				bottom: 50vh;
				position: fixed;
				transform: scale(1);
		}
		100% {
				bottom: 50vh;
				position: fixed;
				transform: scale(1);
		}
}
.pagetop_overlay {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		z-index: -1;
}
.pagetop_overlay.overlayStart {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		opacity: 0;
		display: block;
		background: #1e1e1e;
		animation: overlayStart 1s linear forwards;
		z-index: 5000;
}
.pagetop_overlay.fadeOut {
		animation: fadeOut 1s linear forwards;
}
@keyframes overlayStart {
		0% {
				opacity: 0;
				pointer-events: all;
		}
		62%, 65% {
				height: 100vh;
				opacity: 0.8;
				pointer-events: all;
		}
		80%, 100% {
				height: 100vh;
				opacity: 1;
				pointer-events: all;
		}
}
@keyframes fadeOut {
		0%, 6% {
				opacity: 1;
				filter: brightness(800%)
		}
		6.5% {
				filter: brightness(100%)
		}
		100% {
				opacity: 0;
				z-index: -1;
				filter: brightness(100%)
		}
}
@media(max-width: 767px) {
		.pagetop {
				width: 36px;
		}
		.pagetop_wrap .copyright {
				left: 20px;
				top: 45px;
		}
}
/* =========== */
.fadeInNml {
		opacity: 0;
		transition: opacity 0.4s;
}
.section_hd.fadeInNml {
		transition-delay: 0.11s
}
.fadeInNmlActive {
		opacity: 1;
}
/* =========== */
@media(min-width: 1701px) {
		.NmlDisp {
				display: none
		}
}
@media(max-width: 1700px) {
		.WdDisp {
				display: none
		}
}
@media(max-width: 1025px) {
		.largeBr {
				display: none
		}
}
@media(min-width: 768px) {
		.spbr {
				display: none
		}
}
@media(max-width: 767px) {
		.pcbr {
				display: none
		}
}
.langEn {
		font-family: "Plus Jakarta Sans", sans-serif;
}
::-webkit-scrollbar {
		width: 10px;
		height: 10px;
}
::-webkit-scrollbar-track {
		background-color: #1e1e1e;
}
::-webkit-scrollbar-thumb {
		background-color: #fff;
}
::selection {
		background: #ccc !important;
		-webkit-background-clip: inherit;
		-webkit-text-fill-color: #000;
		color: #000;
}
::-moz-selection {
		background: #ccc;
}