/* COBRA CAPOEIRA */

/*
basic,section
h1,h2...
header
mv
footer
main
*/

/* GOOGLE FONTS ------------------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@100..700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Quantico:ital,wght@0,400;0,700;1,400;1,700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Cute+Font&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Cabin+Sketch:wght@400;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Cabin+Sketch:wght@400;700&family=Noto+Color+Emoji&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Oswald:wght@200..700&family=Voltaire&display=swap');


/* BODY -------------------------------------------------------------------------- */

html {
	scroll-behavior: smooth;
	scroll-padding: 0px;
	}

body {
	margin: 0;
	background-color: #000;
	background-image: url(img/bg-noise.webp);
	background-position: center;
	background-size: 700px;
	background-repeat: repeat;
	font-family: 'Oswald', 'Noto Sans JP', sans-serif;
	font-weight: 400;
	font-size: 15px;
	letter-spacing: 0.06em;
	color: #ccc;
	line-height: 2em;
	}

/* BASIC -------------------------------------------------------------------------- */

a { transition: 0.4s; text-decoration: none; }
a:link { color: #fff; text-decoration: underline; text-transform: normal; }
a:visited { color: #fff; }
a:hover { color: #fff; }
a:active { color: #fff; }

p {
	margin: 0px 0px 0px 0px;
	}

.center {
	text-align: center;
	}

.text {
	width: 100%;
	max-width: 440px;
	margin: 0px auto;
	text-align: left;
	}

/* h1, h2 ---------------------------------------------- */

h3 {
	font-size: 35px;
	line-height: 1.1em;
	margin: 70px 0px 10px 0px;
	}

/* logo ---------------------------------------------- */

.logo {
	border: 0px dotted #444;
	background-image: url(img/logo.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	height: 64px;			/* 80/260 / 64/210 */
	width: 210px;
	font-size: 0px;
	color: transparent;
	margin: calc(50vh - 100px) auto 0px;
	animation: fadeIn 4s ease-out forwards;
	}

@keyframes fadeIn {
	0% {
	opacity: 0;
    transform: translateY(-20px);
		}
	100% {
    opacity: 1;
    transform: translateY(0);
		}
	}


/* BTN ---------------------------------------------- */

.btn {
    z-index: 1;
	opacity: 0;
	cursor: pointer;
	display: block;
	box-sizing: border-box;
	border: 0.5px solid #fff;
	padding: 10px;
	width: 200px;
	text-align: center;
	margin: 220px auto 240px;
	font-size: 16px;
	transition: .5s;
	animation: fadeIn2 1s ease-out forwards;
	animation-delay: 3s;
	}

@keyframes fadeIn2 {
	0% {
	opacity: 0;
    transform: translateY(20px);
		}
	100% {
    opacity: 0.8;
    transform: translateY(0);
		}
	}

.btn:hover {
	opacity: 1;
	background-color: rgba(255, 255, 255, 0.1);
	box-shadow: 0px 0px 60px rgba(255, 255, 255, 0.18);
	letter-spacing: 0.1em;
	color: #fff;
	}






/* -------------------------------------------------------------------------------- */

.none { display: none; }
.sp { display: none; }

/* ---------------------------------------------------------------------------- */


