@font-face {
  font-display: swap;
  font-family: Noto Sans JP;
  font-weight: 400;
  src: url(https://www.capcom-games.com/common/font/NotoSansJP-Regular.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: Noto Sans JP;
  font-weight: 700;
  src: url(https://www.capcom-games.com/common/font/NotoSansJP-Bold.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: Noto Sans JP;
  font-weight: 900;
  src: url(https://www.capcom-games.com/common/font/NotoSansJP-Black.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: Roboto;
  font-weight: 400;
  src: url(https://www.capcom-games.com/common/font/Roboto-Regular.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: Roboto;
  font-weight: 700;
  src: url(https://www.capcom-games.com/common/font/Roboto-Bold.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: Roboto;
  font-weight: 900;
  src: url(https://www.capcom-games.com/common/font/Roboto-Black.woff2) format("woff2");
}

body {
    
	color: white;
    font-family: "Roboto", "Noto Sans JP", "Avenir", "Helvetica Neue", "Helvetica", "Arial", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
    font-size: 17px;
    line-height: 1.8 !important;
	background: black;
	position: relative;
	min-height: 100%;
  display: flex;
  flex-direction: column;
}


body.fixed {
  overflow: hidden;
}

html {
	overflow-x:hidden;
}



p{
	font-family: "Roboto", "Noto Sans JP", "Avenir", "Helvetica Neue", "Helvetica", "Arial", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
	font-weight:300;
}

section {

	padding-bottom:85px;
}

.no-gutter > [class*='col-'] {
    padding-right:0;
    padding-left:0;
}

a,a:link {
	color: #222;
}

a:hover,a:focus {
	color: #222;
}


:root {
	--header-height: 3rem;
	/*========== Colors ==========*/
	--hue-color: 206;
	--black-color: hsl(var(--hue-color), 4%, 4%);
	--black-color-alt: hsl(var(--hue-color), 4%, 8%);
	--title-color: hsl(var(--hue-color), 4%, 95%);
	--text-color: hsl(var(--hue-color), 4%, 75%);
	--text-color-light: hsl(var(--hue-color), 4%, 65%);
	--white-color: #fff;
	
	--container-color: hsl(var(--hue-color), 4%, 10%);
	--text-gradient: linear-gradient(
		hsl(var(--hue-color), 4%, 24%),
		hsl(var(--hue-color), 4%, 8%)
	);
	--scroll-thumb-color: hsl(var(--hue-color), 4%, 16%);
	--scroll-thumb-color-alt: hsl(var(--hue-color), 4%, 20%);
	/*========== Font and typography ==========*/

	--biggest-font-size: 6.5rem;
	--bigger-font-size: 3.5rem;
	--big-font-size: 2.5rem;
	--h2-font-size: 1.25rem;
	--h3-font-size: 2.7rem;
	--normal-font-size: 0.938rem;
	--small-font-size: 0.813rem;
	--smaller-font-size: 0.75rem;
	--text-line-height: 2rem;
	/*========== Font weight ==========*/
	--font-medium: 500;
	--font-semi-bold: 600;
	/*========== Margenes Bottom ==========*/
	--mb-0-5: 0.5rem;
	--mb-0-75: 0.75rem;
	--mb-1: 1rem;
	--mb-1-5: 1.5rem;
	--mb-2: 2rem;
	--mb-2-5: 2.5rem;
	/*========== z index ==========*/
	--z-tooltip: 10;
	--z-fixed: 100;
}




* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

html {
	scroll-behavior: smooth;
}




ul {
	list-style: none;
}

a {
	text-decoration: none;
	border: none;
	outline: none;
}

a:hover{
	text-decoration: none;
	border: none;
	outline: none;
}

button,
input {
	border: none;
	outline: none;
	text-decoration: none;
}

button {
	cursor: pointer;
}

img {
	max-width: 100%;
	height: auto;
}


.section {
	padding: 4rem 0 2rem;
}

.section_title {
	font-size: var(--bigger-font-size);
	text-align: center;
	margin-bottom: var(--mb-2-5);
}

.section_title-gradient {
	background: var(--text-gradient);
	color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
}


.main {
	overflow: hidden;
	flex: 1;
}

.container {
	width: 80vw;;
	margin: 0 auto;
}

.grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}


.header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: var(--z-fixed);
	background: transparent;
}


.nav {
	height: var(--header-height);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav_logo {
	display: flex;
	width: 16.5rem;
	margin: 0 auto;
}

.nav_toggle {
	font-size: 1.2rem;
	color: var(--white-color);
	cursor: pointer;
}

@media screen and (max-width: 767px) {
	.nav_menu {
		position: fixed;
		background-color: var(--body-color);
		top: -100%;
		left: 0;
		width: 100%;
		padding: 4rem 0 3rem;
		transition: 0.4s;
	}
}

.nav_list {
	display: flex;
	flex-direction: column;
	align-items: center;
	row-gap: 1rem;
}

.nav_link {
	color: var(--white-color);
	font-size: var(--h2-font-size);
	text-transform: uppercase;
	font-weight: var(--font-semi-bold);
	background: var(--text-gradient);
	color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
	transition: 0.4s;
}

.nav_link:hover {
	background: var(--white-color);
	color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
}

.nav_close {
	position: absolute;
	font-size: 1.5rem;
	top: 1rem;
	right: 1rem;
	color: var(--white-color);
	cursor: pointer;
}

small{
	font-size: var(--small-font-size);
	
}

/* show menu */
.show-menu {
	top: 0;
}

/* Change background header */
.scroll-header {
	background-color: var(--body-color);
}

/* Active link */
.active-link {
	background: var(--white-color);
	color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
}


.home_img {
	width: 250px;
	position: absolute;
	top: -16rem;
	right: 1.5rem;
	
}


.home_data {

	position: relative;
	width: 100%;
	margin: 0 auto;
}

.home_header {
	position: relative;
}



.home_title {
	
	top: -8rem;
	left: 1rem;
	line-height: 8rem;
	font-size: var(--biggest-font-size);
	/* background: var(--text-gradient); */
	color:white ;
	-webkit-background-clip: text;
	background-clip: text;
}

.home_subtitle {
	font-size: var(--biggest-font-size);
	margin-bottom: var(--mb-2-5);
}

.home_title-description {
	font-size: var(--h3-font-size);
	font-weight: var(--font-medium);
	margin-bottom: var(--mb-1);
}

.home_description {
	margin-bottom: var(--mb-2-5);
	line-height: var(--text-line-height);
}

.home_price {
	font-size: var(--h3-font-size);
	font-weight: var(--font-semi-bold);
	margin-left: var(--mb-0-75);
}


.button {
	display: inline-block;
	background-color: gray;
	color: white;
	padding: 1rem 1.25rem;
	border-radius: 0.5rem;
	transition: 0.3s;
	text-decoration: none;
	border: 1px solid gray;
}

.button:hover {
	background-color: var(--black-color-alt);
	color: white;
	text-decoration: none;
	border: 1px solid white;
}



.button_icon {
	font-size: 1.2rem;
}

.button-flex {
	display: inline-flex;
	align-items: center;
	column-gap: 0.75rem;
}


footer{
	position: relative;
	bottom: 0;
}


.footer_container {
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	row-gap: 2rem;
}

.footer_logo {
	width: 2rem;
}

.footer_title {
	font-size: var(--h3-font-size);
	font-weight: var(--font-medium);
	margin-bottom: var(--mb-1);
}

.footer_links {
	display: flex;
	flex-direction: column;
	row-gap: 0.5rem;
}

.footer_link {
	color: var(--text-color);
}

.footer_link:hover {
	color: var(--white-color);
}




.footer_social {
	display: flex;
	column-gap: 1.25rem;
}

.footer_social-link {
	display: inline-flex;
	color: var(--white-color);
	background-color: var(--container-color);
	padding: 0.5rem;
	border-radius: 0.25rem;
	font-size: 1rem;
}

.footer_social-link:hover {
	background-color: var(--black-color);
}

.footer_copy {
	margin-top: 5rem;
	text-align: center;
}

.footer_copy-link {
	font-size: var(--smaller-font-size);
	color: var(--text-color-light);
}


.scrollup {
	position: fixed;
	right: 1rem;
	bottom: -20%;
	display: flex;
	background-color: var(--container-color);
	border-radius: 0.25rem;
	padding: 0.45rem;
	opacity: 9;
	z-index: var(--z-tooltip);
	transition: 0.4s;
}

.scrollup:hover {
	background-color: var(--black-color);
	opacity: 1;
}

.scrollup__icon {
	color: var(--white-color);
	font-size: 1.35rem;
}

/* Show Scroll Up*/
.show-scroll {
	bottom: 5rem;
}


::-webkit-scrollbar {
	width: 0.6rem;
	border-radius: 0.5rem;
}

::-webkit-scrollbar-thumb {
	background-color: var(--scroll-thumb-color);
	border-radius: 0.5rem;
}

::-webkit-scrollbar-thumb:hover {
	background-color: var(--scroll-thumb-color-alt);
}






#switcher {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
#switcher li {
  float: left;
  width: 30px;
  height: 30px;
  margin: 0 15px 15px 0;
  border-radius: 30px;
  border: 3px solid gray;
}

#blackButton {
  background: black;
}
#whiteButton {
  background: white;
}

@keyframes fuwafuwa {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1.0416666667vw);
  }
}

.white{
	display: none;
}

.bg {
 
  background-image: linear-gradient(-70deg, #fff 30%, #fff 30%, #000 30%);
  bottom:0;
  left:-50%;
  opacity:.5;
  position:fixed;
  right:-25%;
  top:0;
  z-index:-1;
}

.bg-white {
 
  background-image: linear-gradient(-70deg, #2470ef 30%, #0744a8 30%, #fff 30%);
  bottom:0;
  left:-50%;
  opacity:.5;
  position:fixed;
  right:-50%;
  top:0;
  z-index:-1;
}


@media screen and (max-width: 480px) {
	.tshirt{
		width: 110%;
		height: 70vw;
		position: relative;
	}
	
	.home_img{
		width: 450px;
		position: absolute;
		top: -4vw;
		
	}
	
	.section{
		padding: 4rem 0 10rem;
	}
	
	.nav_logo{
		width: 13.5rem;
	}
	
	.nav{
		height: 15vw;
		width: 125%;
	}
	
	.home_title{
		line-height: .8 !important;
	}
	
	.img-thumbnail{
		width: 15vw !important;
	}
	
	.home_title-description{
		font-size: 6vw;
	}
	
	.size ul li{
		width: 12.5vw !important;
		height: 12.5vw !important;
	}
	
	.home_description{
		margin-bottom: 0 !important;
	}
	
	.home_price{
		font-size: 7vw;
	}
	
	.grid{
		display: block !important;
	}
	
	.preview{
		position: relative !important;
		width: 90vw !important;
		height: 90vw;
		margin-bottom: 20vw;
		
	}
	
	.imgs{
		position: relative !important;
		top: 0 !important;
		right: 7vw !important;
	}
	
	.imgs img{
		width: 100% !important;
		height: 100% !important;
	}
	
	.movControls{
		bottom: 0 !important;
		right: 7vw !important;
	}
}

.img-thumbnail{
	width: 5vw;
	margin-right: 10px;
}

.size{
	display: flex;
	margin: 1vw 0 3vw;
	justify-content: flex-start;
}


.size ul{
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
}

.size ul li{
	border: 1px solid white;
	display: flex;
	width: 3.5vw;
	height: 3.5vw;
	justify-content: center;
	align-items: center;
	margin: 0 .4vw 0 0;
}

.size ul li:last-child{
	margin-right: 0;
}


/* Modal Box */

.modal-dialog {
    margin: 0px auto;
    position: fixed;
    top: 0;
	left:0;
    width: 100%;
}

.modal-body {
    padding: 0px;
}

.modal-content {
    background-color: transparent;
    border: none;
    border-radius: 0px;
    box-shadow: none;
}

#wrap{
	padding-top: 70px;
	overflow-x: hidden;
	position: relative;
}

@media only screen and (min-device-width: 481px) and (max-device-width: 1024px)  {
	.movControls{
		bottom: -70vw !important;
	}
}

@media only screen and (device-width: 768px) {
	.movControls{
		bottom: -80vw !important;
	}
}

/* Carousel Control*/

.close {
    color: #fff;
    font-size: 50px;
    font-weight: lighter;
    opacity: 1;
    position: fixed;
    right: 30px;
    text-shadow: none;
    top: 10px;
    z-index: 2147483647;
}

.close:hover, .close:focus {
    color: #f7f7f7;
}

.carousel-control.left, .carousel-control.right  {
    background-image: none;
	height: 100vh;
}

.carousel-control {
    text-shadow: none;
	width: 9%;
}

.modal-open .modal {
    top: 0;
    position: fixed!important;
}



.contents, .contents02, .contents03, .contents04, .contents05, .contents06 {
  display: none;
}
.contents.show, .contents02.show, .contents03.show, .contents04.show, .contents05.show, .contents06.show {
  display: initial;
}

.active{
	color: black;
	background: white;
	
}

footer{
	color: white;
}

.imgs {
  position: absolute;
	right: -25vw;
	top: 6vw;
  width: 100%;
  height: 100%;
}

.imgs img {
  position: absolute;
  top: 0;
  width: 80%;
  height: 80%;
  object-fit: contain;
  transform: translate(50%, -10%) rotate(-20deg);
  opacity: 0;
  pointer-events: none;
  transition: ease all 0.3s;
}

.imgs img.activ {
  opacity: 1;
  transform: none;
}

.movControls {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  align-content: center;
  position: relative;
  bottom: -38vw;
	right: 4vw;
}

.movControls .movControl {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  align-content: center;
  width: 40px;
  height: 30px;
  margin: 0 59px;
  position: relative;
  cursor: pointer;
}

.movControls .movControl.left {
  transform: rotateY(180deg);
}

.movControls .movControl:before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: gray;
}

.movControls .movControl:after {
  content: "";
  width: 10px;
  height: 10px;
  border: 2px solid gray;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
}

.closePreview:after {
  transform: rotate(-45deg);
}

.closePreview:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: gray;
  transform: rotate(45deg);
}

.closePreview {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  align-content: center;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  opacity: 0;
  cursor: pointer;
  pointer-events: none;
  transition: ease all 0.3s;
}

.zoomControl:after {
  bottom: 20%;
  right: 20%;
  width: 2px;
  height: 30%;
  background-color: #fff;
  transform: rotate(-45deg);
  transform-origin: bottom left;
}
.zoomControl:before {
  top: 20%;
  left: 20%;
  width: 40%;
  height: 40%;
  border-radius: 50%;
  border: 2px solid #fff;
}

.zoomControl:before, .zoomControl:after {
  content: "";
  position: absolute;
}

.zoomControl {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  align-content: center;
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #fff;
  background-color: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: ease all 0.3s 0.5s;
}

.data {
	width: 30vw;
	margin: 6vw auto;
}