@charset "utf-8";

::selection {
	color: #6A425A;
	background-color: #33C9F9;
}

:root {
	--white: #fff;
	--black: #000;
	--red: #f00;
	--green: #0F0;

	--blue-1: #141229; /* header box slogan */
	--blue-2: #1E1B3A; /* font button header */
	--blue-3: #0F0E1D; /* body background */
	--blue-4: #59548C; /* input placeholder */
	--blue-5: rgba(20, 18, 41, .6); /* header box bgr */
	--yellow-1: #ffb600; /* button header */
	--yellow-2: #ff8700; /* button header */
	--burgundy-1: #6A425A; /* email buttons */
	--burgundy-2: #817995; /* email input */
	--burgundy-3: #944675; /* email input */

	--bt-radius-1: 5px;
	--bt-radius-2: 10px;

	--box-shadow-neon-1: 0 0 16px #33C9F9;
	--box-shadow-neon-2: 0 0 10px #009dd0;

	--char-1: #ed694d;
	--char-1-hover: #b04a40;
	--char-2: #f9b233;
	--char-2-hover: #ff8700;
	--char-3: #e0a2bf;
	--char-3-hover: #c67797;
	--char-4: #ededed;
	--char-4-hover: #373736;
	--char-5: #936037;
	--char-5-hover: #6f4626;
	--char-6: #c67797;
	--char-6-hover: #a35c79;
	--char-7: #dadada;
	--char-7-hover: #706f6f;
	--char-8: #f3a3c0;
	--char-8-hover: #c67797;
	--char-9: #cbbb9f;
	--char-9-hover: #7b6a58;
	--char-10: #2fac66;
	--char-10-hover: #25844f;

	--font-1: 'Herculanum', sans-serif;
	--font-2: 'Roboto', sans-serif;

	--gradient-1: linear-gradient(#030028, #020018); /* about sesssion */
	--gradient-2: linear-gradient(#030028, #230024); /* prologue sesssion */
	/*--gradient-3: linear-gradient(rgba(0,0,0,.56), rgba(0,0,0,.8));*/ /* gameplay sesssion */
	--gradient-4: linear-gradient(#170047, #7E5711); /* roadmap sesssion */
	--gradient-5: linear-gradient(#170047, #030018); /* ecosystem sesssion */
	--gradient-6: linear-gradient(#050038, #020018); /* disclaimer sesssion */
}

html {
	background: black;
}

body {
	display: flex;
	flex-direction: column;
	align-items: center;
	align-content: center;
	justify-content: center;
	width: 100%;
	margin: 0 auto;
	color: var(--white);
	background: var(--blue-3);
	}

.tx-left {
	text-align: left !important;
	}
.tx-right {
	text-align: right !important;
	}
.fc-left {
	justify-content: flex-start !important;
	}
.fc-right {
	justify-content: flex-end !important;
	}
.tx-button {
	display: inline-block;
	padding: 10px 4vw;
	border-radius: var(--bt-radius-1);
	color: var(--white);
	background: var(--burgundy-1);
	font-family: var(--font-2);
	font-size: 24px;
	font-weight: 400;
	transition: .5s;
	text-align: center;
	}
.tx-button:hover {
	transform: scale(1.1);
	transition: .5s;
	background: var(--burgundy-3);
	}
@media screen and (max-width: 700px) {
.tx-button {
	width: 100%;
	}
}

/* characters */
.char-1 { background-color: var(--char-1) !important; }
.char-1:hover { background-color: var(--char-1-hover) !important; }
.char-2 { background-color: var(--char-2) !important; }
.char-2:hover { background-color: var(--char-2-hover) !important; }
.char-3 { background-color: var(--char-3) !important; }
.char-3:hover { background-color: var(--char-3-hover) !important; }
.char-4 { background-color: var(--char-4) !important; }
.char-4:hover { background-color: var(--char-4-hover) !important; }
.char-5 { background-color: var(--char-5) !important; }
.char-5:hover { background-color: var(--char-5-hover) !important; }
.char-6 { background-color: var(--char-6) !important; }
.char-6:hover { background-color: var(--char-6-hover) !important; }
.char-7 { background-color: var(--char-7) !important; }
.char-7:hover { background-color: var(--char-7-hover) !important; }
.char-8 { background-color: var(--char-8) !important; }
.char-8:hover { background-color: var(--char-8-hover) !important; }
.char-9 { background-color: var(--char-9) !important; }
.char-9:hover { background-color: var(--char-9-hover) !important; }
.char-10 { background-color: var(--char-10) !important; }
.char-10:hover { background-color: var(--char-10-hover) !important; }

.red {
	color: var(--red);
}
.green {
	color: var(--green);
}

/* animations */
@keyframes main-char-ani-1 {
	0% {
		transform: rotateY(0deg);
	}
	50% {
		transform: rotateY(180deg);
	}
	100% {
		transform: rotateY(0deg);
	}
}
@keyframes main-char-ani-2 {
	0% {
		transform: rotateY(0deg);
	}
	50% {
		transform: rotateY(180deg);
	}
	100% {
		transform: rotateY(0deg);
	}
}
@keyframes msg-fade-out {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		visibility: hidden;
	}
}

header,
.about,
.gameplay,
.prologue,
.roadmap,
.ecosystem,
.hiw,
.disclaimer,
footer {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	}

.content {
	display: inline-flex;
	flex-direction: column;
	width: 90vw;
	max-width: 1200px;
	}

/* modal */
.modal-bgr {
	position: fixed;
	top: 0;
	left: 0;
	display: none;
	width: 100%;
	height: 100vh;
	justify-content: center;
	align-items: center;
	background-image: radial-gradient(rgba(0,0,0,.5), rgba(0,0,0,1));
	z-index: 20;
	}
.modal-bgr .bt-close {
	position: absolute;
	right: 1.5vw;
	top: 1.5vh;
	width: 24px;
	padding: 2px;
	cursor: pointer;
	opacity: 0.7;
	}
.modal-bgr .cnt {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 90%;
	max-width: 800px;
	padding: 2vh 2vw;
	border-radius: 15px;
	background: var(--gradient-1);
	box-shadow: var(--box-shadow-neon-2);
	font-family: var(--font-1);
	}
.modal-bgr .cnt .itx {
	display: block;
	width: 100%;
	appearance: none;
	-webkit-appearance: none;
	margin-right: 10px;
	border: 0;
	border-radius: var(--bt-radius-1);
	outline: 0;
	padding: 1.8vh 1.5vw;
	color: var(--blue-1);
	background: var(--burgundy-2);
	font-family: var(--font-1);
	font-size: 1.6vw;
	text-align: left;
	transition: .5s;
	}
.modal-bgr .cnt .itx:focus{
	transform: scale(1.02);
	transition: .5s;
	}
.modal-bgr .cnt .itx::-webkit-input-placeholder {
	color: var(--blue-1);
	letter-spacing: 0.15em;
	text-align: center;
	}
.modal-bgr .cnt .itx:-moz-placeholder {
	color: var(--blue-1);
	letter-spacing: 0.15em;
	text-align: center;
	}
.modal-bgr .cnt .itx::-moz-placeholder {
	color: var(--blue-1);
	letter-spacing: 0.15em;
	text-align: center;
	}
.modal-bgr .cnt .itx:-ms-input-placeholder {
	color: var(--blue-1);
	letter-spacing: 0.15em;
	text-align: center;
	}
.modal-bgr .cnt .itx::placeholder {
	color: var(--blue-1);
	letter-spacing: 0.15em;
	text-align: center;
	}
.modal-bgr .cnt .itx:focus::-webkit-input-placeholder {
	color: var(--blue-4);
	}
.modal-bgr .cnt .itx:focus:-moz-placeholder {
	color: var(--blue-4);
	}
.modal-bgr .cnt .itx:focus::-moz-placeholder {
	color: var(--blue-4);
	}
.modal-bgr .cnt .itx:focus:-ms-input-placeholder {
	color: var(--blue-4);
	}
.modal-bgr .cnt .itx:focus::placeholder {
	color: var(--blue-4);
	}
.modal-bgr .cnt .isub {
	display: block;
	width: 100%;
	appearance: none;
	-webkit-appearance: none;
	margin-top: 1.2vh;
	border: 0;
	border-radius: var(--bt-radius-1);
	outline: 0;
	padding: 1.5vh 1.5vw;
	color: var(--white);
	background: var(--burgundy-1);
	font-family: var(--font-1);
	font-size: 1.6vw;
	text-align: center;
	cursor: pointer;
	transition: .5s;
	}
.modal-bgr .cnt .isub:hover,
.modal-bgr .cnt .isub:focus {
	transform: scale(1.02);
	transition: .5s;
	background: var(--burgundy-3);
	}
@media screen and (max-width: 800px) {
/*.modal-bgr {
	flex-direction: column-reverse;
	}*/
.modal-bgr .cnt {
	padding: 10px;
	}
.modal-bgr .bt-close {
	position: absolute;
	top: auto;
	right: auto;
	bottom: 5vh;
	}
.modal-bgr .cnt .itx {
	padding: 15px 1.5vw;
	font-size: 2.5vw;
	}
.modal-bgr .cnt .isub {
	margin-top: 2vh;
	padding: 12px 1.5vw;
	font-size: 2.5vw;
	}
}

/* notification */
.ntf-c {
	position: fixed;
	top: 0;
	z-index: 101;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 100vw;
	}
.ntf-c .tx {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 90%;
	max-width: 550px;
	margin: 20px 0 0 0;
	border-radius: 100px;
	padding: 18px 1.5vw;
	box-shadow: var(--box-shadow-neon-2);
	background-image: var(--gradient-2);
	font-family: var(--font-2);
	font-size: 1em;
	line-height: 1.5em;
	text-align: center;
	}

/* loading */
.loading {
	position: fixed;
	top: 0;
	left: 0;
	display: none;
	width: 100%;
	height: 100vh;
	justify-content: center;
	align-items: center;
	background-image: radial-gradient(rgba(0,0,0,.5), rgba(0,0,0,1));
	z-index: 100;
	}
.loading .img {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50%;
	max-width: 150px;
	}

/* header */
header {
	align-items: stretch;
	flex-wrap: nowrap;
	min-height: 100vh;
	padding: 7vh 0;
	background: url(../img/header.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}
header .content {
	width: 90%;
	max-width: none;
	flex-direction: row;
	}
header .part-1 {
	display: inline-flex;
	width: 50%;
	justify-content: center;
	z-index: 10;
	}
header .part-1 .cnt {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 96%;
	padding: 8vh 5px;
	border-radius: 20px;
	background: var(--blue-5);
	box-shadow: var(--box-shadow-neon-1);
	font-family: var(--font-1);
	}
header .part-1 .cnt .gname {
	font-size: 8vw;
	text-align: center;
	}
header .part-1 .cnt .glogo {
	width: 80%;
	text-align: center;
	}
header .part-1 .cnt .slogan {
	margin-top: 5vh;
	font-size: 3.5vw;
	line-height: 1.2em;
	text-align: center;
	}
header .part-1 .cnt .bt {
	display: inline-block;
	border-radius: var(--bt-radius-2);
	padding: 2.5vh 5vw;
	color: var(--blue-2);
	background: var(--yellow-1);
	margin-top: 5vh;
	font-size: 3vw;
	text-align: center;
	transition: .5s;
	}
header .part-1 .cnt .bt:hover {
	background: var(--yellow-2);
	transform: scale(1.05);
	transition: .5s;
	}
header .part-2 {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 50%;
	}
header .part-2 .main-img-c {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	}
header .part-2 .main-img-c .main-img {
	height: 30vw;
	animation: main-char-ani-1;
	animation-duration: 2s;
	}
header .part-2 .main-img-c .main-img:hover {
	animation: main-char-ani-2;
	animation-duration: 2s;
	}
header .part-2 .main-img-c .main-name {
	margin-top: 4vh;
	max-width: 80%;
	font-family: var(--font-1);
	font-size: 2vw;
	text-align: center;
	}
header .part-2 .thumbs {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin-top: 7vh;
	padding: 10px 15px;
	border-radius: 50px;
	background: var(--blue-5);
	box-shadow: var(--box-shadow-neon-2);
	}
header .part-2 .thumbs img {
	display: inline-block;
	padding: .5vw;
	height: 3vw;
	transform: scale(1);
	transition: .3s;
	opacity: 0.3;
	}
header .part-2 .thumbs img:hover,
header .part-2 .thumbs img.active {
	display: inline-block;
	transform: scale(1.5);
	transition: .3s;
	cursor: pointer;
	opacity: 1;
	}
@media screen and (max-width: 800px) {
header {
	padding: 3vh 0;
	}
}
@media screen and (max-width: 550px) {
header {
	padding: 2vh 0;
	}
header .content {
	flex-direction: column-reverse;
	justify-content: center;
	}
header .part-1 {
	margin-top: 3vh;
	width: auto;
	}
header .part-1 .cnt {
	padding: 4vh 5px;
	}
header .part-1 .cnt .slogan {
	font-size: 6vw;
	}
header .part-2 {
	width: auto;
	}
header .part-2 .main-img-c .main-img {
	height: 45vw;
	}
header .part-2 .main-img-c .main-name {
	font-size: 7vw;
	}
header .part-1 .cnt .bt {
	width: 90%;
	font-size: 5vw;
	}
header .part-2 .main-img-c .main-name {
	margin-top: 2vh;
	}
header .part-2 .thumbs {
	width: 100%;
	justify-content: space-between;
	margin-top: 3vh;
	}
header .part-2 .thumbs img {
	height: 7vw;
	opacity: 0.5;
	}
}


/* subscribe */
.subscribe {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding: 7vh 0;
	}
.subscribe .tx {
	font-family: var(--font-1);
	font-size: 40px;
	text-align: center;
	line-height: 1.3em;
	color: var(--yellow-1);
	}
.subscribe .email-reg {
	display: flex;
	min-width: 50vw;
	justify-content: center;
	align-items: center;
	margin-top: 30px;
	}
.subscribe .email-reg input[type=email] {
	display: inline-block;
	flex: 4;
	appearance: none;
	-webkit-appearance: none;
	margin-right: 10px;
	border: 0;
	border-radius: var(--bt-radius-1);
	outline: 0;
	padding: 1.8vh 1.5vw;
	color: var(--blue-1);
	background: var(--burgundy-2);
	font-family: var(--font-1);
	font-size: 22px;
	text-align: left;
	transition: .5s;
	}
.subscribe .email-reg input[type=email]:focus{
	transform: scale(1.02);
	transition: .5s;
	}
.subscribe .email-reg input[type=email]::-webkit-input-placeholder {
	color: var(--blue-1);
	letter-spacing: 0.15em;
	text-align: center;
	}
.subscribe .email-reg input[type=email]:-moz-placeholder {
	color: var(--blue-1);
	letter-spacing: 0.15em;
	text-align: center;
	}
.subscribe .email-reg input[type=email]::-moz-placeholder {
	color: var(--blue-1);
	letter-spacing: 0.15em;
	text-align: center;
	}
.subscribe .email-reg input[type=email]:-ms-input-placeholder {
	color: var(--blue-1);
	letter-spacing: 0.15em;
	text-align: center;
	}
.subscribe .email-reg input[type=email]::placeholder {
	color: var(--blue-1);
	letter-spacing: 0.15em;
	text-align: center;
	}
.subscribe .email-reg input[type=email]:focus::-webkit-input-placeholder {
	color: var(--blue-4);
	}
.subscribe .email-reg input[type=email]:focus:-moz-placeholder {
	color: var(--blue-4);
	}
.subscribe .email-reg input[type=email]:focus::-moz-placeholder {
	color: var(--blue-4);
	}
.subscribe .email-reg input[type=email]:focus:-ms-input-placeholder {
	color: var(--blue-4);
	}
.subscribe .email-reg input[type=email]:focus::placeholder {
	color: var(--blue-4);
	}
.subscribe .email-reg input[type=submit] {
	display: inline-block;
	flex: 1;
	appearance: none;
	-webkit-appearance: none;
	border: 0;
	border-radius: var(--bt-radius-1);
	outline: 0;
	padding: 1.8vh 2vw;
	color: var(--white);
	background: var(--burgundy-1);
	font-family: var(--font-1);
	font-size: 22px;
	text-align: center;
	cursor: pointer;
	transition: .5s;
	}
.subscribe .email-reg input[type=submit]:hover,
.subscribe .email-reg input[type=submit]:focus {
	transform: scale(1.1);
	transition: .5s;
	background: var(--burgundy-3);
	}
@media screen and (max-width: 550px) {
.subscribe {
	padding: 4vh 0;
	}
.subscribe .tx {
	font-size: 5vh;
	}
.subscribe .email-reg {
	flex-direction: column;
	width: 95%;
	}
.subscribe .email-reg input[type=email] {
	width: 100%;
	font-size: 4.5vw;
	}
.subscribe .email-reg input[type=submit] {
	width: 100%;
	margin-top: 1.5vh;
	font-size: 4.5vw;
	}
}


/* join the crowd */
.join-c {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 6vh;
	}
.join-c .button {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 700px;
	border-radius: var(--bt-radius-2);
	padding: 2vh 0;
	color: var(--blue-2);
	background: var(--yellow-1);
	transition: .5s;
	font-family: var(--font-1);
	font-size: 36px;
	letter-spacing: 0.3em;
	text-align: center;
	}
.join-c .button:hover {
	background: var(--yellow-2);
	transform: scale(1.05);
	transition: .5s;
	}
@media screen and (max-width: 700px) {
.join-c .button {
	font-size: 6vw;
	}
}


/* about */
.about {
	padding: 10vh 0 8vh 0;
	background-image: var(--gradient-1);
	background-image: url(../img/knifes.jpg);
	background-size: cover;
	font-family: var(--font-2);
	}
.about .txt {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	}
.about .txt .cl {
	flex: 1;
	padding: 0 2vw;
	}
.about .txt .cl dt {
	font-size: 30px;
	font-weight: 800;
	}
.about .txt .cl dd {
	padding: 20px 0 50px 0;
	font-size: 22px;
	font-weight: 400;
	line-height: 1.9em;
	}
@media screen and (max-width: 700px) {
.about .txt {
	flex-direction: column;
	}
.about .txt .cl dt {
	font-size: 4vh;
	}
.about .txt .cl dd {
	font-size: 3.5vh;
	}
}


/* prologue */
.prologue {
	padding: 100px 0 150px 0;
	background-image: var(--gradient-2);
	}
.prologue .part {
	display: flex;
	width: 100%;
	padding: 20px 0;
	}
.prologue .part .tx {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	flex: 1;
	font-family: var(--font-2);
	font-size: 24px;
	line-height: 2.3em;
	}
.prologue .part .img-c {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	flex: 1;
	}
.prologue .part .img-c .img {
	display: block;
	max-width: 100%;
	max-height: 400px;
	}
@media screen and (max-width: 750px) {
.prologue {
	padding: 2vh 0 10vh 0;
	}
.prologue .part {
	flex-direction: column-reverse;
	padding: 2.5vh 0;
	}
.prologue .part .tx {
	font-size: 2.5vh;
	text-align: center !important;
	}
.prologue .part .img-c {
	display: flex;
	justify-content: center !important;
	padding: 5vh 0;
	}
.prologue .part .img-c .img {
	width: 80%;
	max-width: 200px;
	}
}

/* gameplay */
.gameplay {
	padding: 150px 0 130px 0;
	background-image: url(../img/gameplay.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: left bottom;
	}
.gameplay .title {
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: var(--font-1);
	font-size: 90px;
	text-align: center;
	}
.gameplay .tx-c {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 7vh;
	}
.gameplay .tx-c .tx {
	display: inline-block;
	width: 90%;
	max-width: 800px;
	font-family: var(--font-2);
	font-size: 24px;
	line-height: 2em;
	text-align: center;
	}
@media screen and (max-width: 650px) {
.gameplay {
	padding: 10vh 0 8vh 0;
	}
.gameplay .title {
	font-size: 12vw;
	}
.gameplay .tx-c {
	margin-top: 5vh;
	}
.gameplay .tx-c .tx {
	font-size: 2.5vh;
	}
.gameplay .subscribe {
	margin-top: 4.5vh;
	}
}
@media screen and (max-width: 700px) {
.gameplay .tx-c {
	margin-top: 5vh;
	}
}


/* roadmap */
.roadmap {
	padding: 150px 0 130px 0;
	background-image: var(--gradient-4);
	}
.roadmap h1 {
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: var(--font-1);
	font-size: 70px;
	}
.roadmap .img.rmap-wide,
.roadmap .img.rmap-mobile {
	display: block;
	width: 100%;
	max-width: 1200px;
	margin-top: 100px;
	}
.roadmap .img.rmap-wide {
	max-width: 1200px;
	}
.roadmap .img.rmap-mobile {
	display: none;
	}
.roadmap .join-c {
	}
@media screen and (max-width: 550px) {
.roadmap .img.rmap-wide {
	display: none;
	}
.roadmap .img.rmap-mobile {
	display: block;
	height: 80vh;
	}
}
@media screen and (max-width: 650px) {
.roadmap {
	padding: 8vh 0 8vh 0;
	}
.roadmap h1 {
	font-size: 15vw;
	}
.roadmap .img.rmap-wide,
.roadmap .img.rmap-mobile {
	margin-top: 6vh;
	}
}

/* ecosystem */
.ecosystem {
	padding: 150px 0 130px 0;
	background-image: var(--gradient-5);
	}
.ecosystem h1 {
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: var(--font-1);
	font-size: 70px;
	}
.ecosystem .img {
	display: block;
	width: 100%;
	max-width: 1200px;
	margin-top: 100px;
	}
@media screen and (max-width: 1000px) {
.ecosystem {
	padding: 8vh 0 8vh 0;
	}
.ecosystem h1 {
	font-size: 15vw;
	}
.ecosystem .img {
	margin-top: 6vh;
	}
}


/* how it works */
.hiw {
	padding: 150px 0 130px 0;
	background-image: url(../img/wallet.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	}
.hiw .icon-c {
	display: flex;
	align-items: center;
	justify-content: center;
	}
.hiw .icon-c .img {
	width: 60%;
	max-width: 300px;
	opacity: 0.7;
	}
.hiw .tx-c {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 100%;
	margin-top: 50px;
	text-align: center;
	font-family: var(--font-2);
	font-size: 24px;
	line-height: 2.2em;
	}
.hiw .tx-c p {
	width: 100%;
	max-width: 900px;
	padding: 30px 0 0 0;
	}
@media screen and (max-width: 700px) {
.hiw {
	padding: 8vh 0 8vh 0;
	background-image: url(../img/wallet-mobile.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	}
.hiw .icon-c .img {
	max-width: 200px;
	}
.hiw .tx-c {
	font-size: 2.8vh;
	}
.hiw .tx-c p {
	padding: 20px 0 0 0;
	}
.hiw .subscribe {
	margin-top: 3vh;
	}
}


/* disclaimer */
.disclaimer {
	padding: 150px 0 200px 0;
	background-image: var(--gradient-6);
	}
.disclaimer .icon-c {
	display: flex;
	align-items: center;
	justify-content: center;
	}
.disclaimer .icon-c .img {
	max-width: 500px;
	opacity: 0.7;
	}
.disclaimer .tx-c {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 100%;
	margin-top: 50px;
	text-align: center;
	font-family: var(--font-2);
	font-size: 28px;
	line-height: 2.2em;
	letter-spacing: 0.15em;
	}
.disclaimer .tx-c p {
	width: 100%;
	max-width: 900px;
	padding: 30px 0 0 0;
	}
.disclaimer .join-c {
	margin-top: 100px;
	}
@media screen and (max-width: 700px) {
.disclaimer {
	padding: 8vh 0 12vh 0;
	}
.disclaimer .icon-c .img {
	max-width: 200px;
	}
.disclaimer .tx-c {
	margin-top: 20px;
	font-size: 2.8vh;
	line-height: 1.8em;
	}
.disclaimer .tx-c p {
	padding: 30px 0 0 0;
	}
.disclaimer .join-c {
	margin-top: 8vh;
	}
}


/* footer */
footer {
	padding: 150px 0 300px 0;
	background: var(--blue-3);
	}
footer .content {
	justify-content: center;
	align-items: center;
	}
footer .join-sn {
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: var(--font-1);
	font-size: 60px;
	line-height: 1.3em;
	text-align: center;
	}
footer .sn-c {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 80px;
	width: 100%;
	}
footer .sn-c .icon {
	width: 120px;
	margin: 3vh;
	}
@media screen and (max-width: 700px) {
footer {
	padding: 8vh 0 20vh 0;
	}
footer .join-sn {
	font-size: 12vw;
	}
footer .sn-c {
	margin-top: 40px;
	}
footer .sn-c .icon {
	width: 80px;
	margin: 3vh;
	}
}