@charset "utf-8";

/* reset
-------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
main,article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
main, article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
sub, sup {
	font-size: 75%;
}
html {
	font-size: 62.5%;
}
body {
	background: #000;
	font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	font-feature-settings: "palt";
	color: #fff;
	letter-spacing: .05em;
	line-height: 1;
}
[data-language="en"] {
	font-family: "Roboto", sans-serif;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
img {
	vertical-align: bottom;
}
a:link,
a:visited {
	color: #fff;
	outline: none;
	text-decoration: none;
}
*,
*:before,
*:after {
	box-sizing: border-box;
}

@media (hover: hover) {
	a:link {
		transition: opacity .5s;
	}
	a:hover {
		opacity: .7;
		text-decoration: none;
	}
}

@media (max-width: 767px ) {
	body {
		overflow-x: hidden;
	}
	img {
		max-width: 100%;
	}
}

/* lHeader
-------------------------------------------------- */
.lHeader {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	padding: 0 3.5%;
	background: linear-gradient(to right, #c00, #001CC5);
	z-index: 5;
}
.lHeader__inner {
	max-width: 1300px;
	margin: 0 auto;
}
.lHeader__navList a {
	font-size: clamp(1.4rem, 1.5vw, 1.8rem);
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
}
.lHeader__navList--mobile a {
	font-size: 1.4rem;
	white-space: nowrap;
}
.lHeader__navList--global {
	position: relative;
}
.lHeader__navList--global a {
	position: relative;
	font-size: 1.4rem;
	font-weight: 400;
}
.lHeader__navList--global > a::before {
	content: '';
	position: absolute;
	right: -25px;
	top: 50%;
	width: 1.5vw;
	height: 1.5vw;
	max-width: 10px;
	max-height: 10px;
	border-top: 1px solid #fff;
	border-left: 1px solid #fff;
	transform: rotate(45deg) translate(0,80%);
	transition: transform .35s;
}
.lHeader__navList--global.isOpen > a::before {
	transform: rotate(225deg) translate(0,-50%);
}
.lHeader__navList--global i {
	display: block;
}

@media (min-width: 768px) {
	.lHeader__inner {
		position: relative;
		display: flex;
		justify-content: space-between;
		align-items: center;
		height: 100px;
	}
	.lHeader__logo {
		width: 12.8%;
		max-width: 128px;
	}
	.lHeader__nav {
		width: 83.7142%;
	}
	.lHeader__navList {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		gap: 2.5%;
		width: 100%;
	}
	.lHeader__navList--global {
		width: 2.57%;
		margin-top: -14px;
		text-align: center;
	}
	.lHeader img {
		display: block;
		width: 100%;
		height: auto;
	}
	.lHeader__spBtn,
	.lHeader__spBtn--close {
		display: none;
	}
}

@media (max-width: 767px) {
	.lHeader {
		padding: 0 5.3333vw;
	}
	.lHeader__inner {
		display: flex;
		align-items: center;
		justify-content: space-between;
		height: 13.3333vw;
	}
	.lHeader__logo {
		position: relative;
		width: 17.8667vw;
		z-index: 15;
	}
	.lHeader__nav {
		position: fixed;
		right: -100%;
		top: 0;
		width: 100%;
		height: 100vh;
		background: linear-gradient(to right, #c00, #001CC5);
		transition: opacity .3s, visibility .5s, right .3s;
		visibility: hidden;
		opacity: 0;
		z-index: 10;
	}
	.lHeader__nav._open {
		right: 0;
		opacity: 1;
		visibility: visible;
	}
	.lHeader__navList {
		display: flex;
		flex-direction: column;
		justify-content: center;
		width: 100%;
		height: 100%;
		padding-left: 10.6666vw;
	}
	.lHeader__navList li + li {
		margin-top: 10.6666vw;
	}
	.lHeader__navList a {
		font-size: 5.3333vw;
	}
	.lHeader__navList--mobile a {
		display: inline-block;
		font-size: 3.4666vw;
	}
	.lHeader__navList--global a {
		display: inline-block;
		width: 7.4666vw;
		font-size: 3.2vw;
		text-align: center;
	}
	.lHeader__spBtn {
		position: relative;
		padding-left: 6vw;
		color: #fff;
		font-weight: bold;
		font-size: 2.6666vw;
		cursor: pointer;
		user-select: none;
		border: none;
		border-radius: 4px;
	}
	.lHeader__spBtn::before,
	.lHeader__spBtn::after {
		content: "";
		position: absolute;
		left: 0;
		width: 4.8vw;
		height: 0.2666vw;
		background: #fff;
		transition: 0.3s;
	}
	.lHeader__spBtn::before {
		top: calc(50% - 6px);
	}
	.lHeader__spBtn::after {
		top: calc(50% + 6px);
	}
	.lHeader__spBtn::after,
	.lHeader__spBtn::before,
	.lHeader__spBtn span {
		display: block;
	}
	.lHeader__spBtn span {
		position: absolute;
		left: 0;
		top: 50%;
		transform: translateY(calc(-50% + 0.1333vw));
		width: 4.8vw;
		height: 0.2666vw;
		background: #fff;
	}
	.lHeader__spBtn--close {
		position: absolute;
		right: 5.3333vw;
		top: 5.3333vw;
		padding-left: 6vw;
		color: #fff;
		font-weight: bold;
		font-size:2.6666vw;
		cursor: pointer;
	}
	.lHeader__spBtn--close span {
		position: absolute;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
		display: block;
		width: 4.8vw;
		height: 4.8vw;
	}
	.lHeader__spBtn--close span::before,
	.lHeader__spBtn--close span::after {
		content: "";
		position: absolute;
		top: 50%;
		left: 0;
		width: 100%;
		height: 0.2666vw;
		background: #fff;
		transform-origin: center;
	}
	.lHeader__spBtn--close span::before {
		transform: rotate(40deg);
	}
	.lHeader__spBtn--close span::after {
		transform: rotate(-40deg);
	}
}


/* lFooter
-------------------------------------------------- */
.lFooter {
	margin-top: 100px;
	padding-bottom: 50px;
}
.lFooter__nav {
	width: 100%;
	background: #272727;
}
.lFooter__navList a {
	position: relative;
	display: inline-block;
	font-size: 1.6rem;
	font-size: clamp(1.4rem, 1.8vw, 1.6rem); 
}

.lFooter__copylight {
	margin-top: 40px;
	font-size: 1.6rem;
	text-align: center;
	color: #fff;
}

.lFooter__navList {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6rem;
	max-width: 1100px;
	height: 60px;
	margin: 0 auto;
	padding: 0 50px;
}
.lFooter__navList li {
	position: relative;
	padding: 0 1rem;
}
.lFooter__navList li + li::before {
	content: "";
	position: absolute;
	left: -3rem;
	top: 50%;
	transform: translateY(-45%);
	height: 2em;
	border-left: 2px solid #fff;
}

@media (max-width: 767px) {
	.lFooter {
		margin-top: 13.3333vw;
		padding-bottom: 5.4vw;
	}
	.lFooter__navList {
		padding: 8vw 0;
	}
	.lFooter__navList li + li::before {
		border-width: 0.2666vw;
	}
	.lFooter__navList a {
		font-size: 3.2vw;
	}
	.lFooter__copylight {
		margin-top: 5.4vw;
		font-size: 2.8vw;
	}
}

/* nav__language
-------------------------------------------------- */
#lang-include {
	text-align: left;
}
.nav__languageList li + li {
	margin-top: 15px;
}
.nav__language a {
	display: inline-block;
	font-size: 1.4rem;
	white-space: nowrap;
}
.nav__language a.current {
	pointer-events: none;
}

@media (min-width: 1401px) {
	#lang-include {
		position: absolute;
		right: -50px;
		top: 80px;
		padding: 20px;
	}
}

@media (min-width: 768px) and (max-width: 1400px) {
	#lang-include {
		position: fixed;
		right: 0;
		top: 100px;
		padding: 20px;
	}
}

@media (min-width: 768px) {
	#lang-include {
		background: #212121;
	}
	.nav__language a.current {
		color: #cc0000;
	}
}

@media (max-width: 767px) {
	#lang-include {
		position: absolute;
		left: -4vw;
		bottom: -18vw;
	}
	.nav__language a {
		font-size: 4vw;
	}
	.nav__language a.current {
		font-weight: bold;
	}
	.lHeader__navList--global > a::before {
		width: 3vw;
		height: 3vw;
	}
}

/* cookieBanner
-------------------------------------------------- */
#cookieBanner {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 20px 50px;
	background: rgba(33, 33, 33, .75);
	z-index: 10;
}
.cookieBanner__inner {
	max-width: 1000px;
	margin: 0 auto;
}
.cookieBanner__btnContent {
	display: flex;
	justify-content: space-between;
}
.cookieBanner__btnAccept,
.cookieBanner__btnReject {
	all: unset;
	display: block;
	padding: 0;
	border-radius: 50px;
	font-size: 1.4rem;
	text-align: center;
  cursor: pointer;
}
.cookieBanner__btnAccept {
	border: 1px solid #484848;
	background: #484848;
}
.cookieBanner__btnReject {
	border: 1px solid #959595;
	background: #000;
}


@media (min-width: 768px) {
	.cookieBanner__inner {
		display: flex;
		justify-content: space-between;
		align-items: center;
		gap: 10px;
	}
	.cookieBanner__inner .uText__xsmall {
		width: 72.5%;
	}
	.cookieBanner__btnContent {
		width: 260px;
		gap: 10px;
	}
	.cookieBanner__btnAccept,
	.cookieBanner__btnReject {
		width: 120px;
		height: 40px;
	}
}

@media (max-width: 767px) {
	#cookieBanner {
		padding: 5.3333vw;
	}
	.cookieBanner__btnContent {
		margin-top: 6vw;
	}
	.cookieBanner__btnContent {
		justify-content: center;
		gap: 4vw;
	}
	.cookieBanner__btnAccept,
	.cookieBanner__btnReject {
		width: 25vw;
		height: 8vw;
		border-radius: 6.6666vw;
		font-size: 3.2vw;
	}
}

/* Component
-------------------------------------------------- */
[class$="Blk"] {
	padding: 150px 50px 0;
}
[class$="Blk__inner"] {
	position: relative;
	max-width: 1000px;
	margin: 0 auto;
}
[class^="cTitle__"] {
	display: block;
}
.cTitle__kv {
	font-size: 8rem;
	font-weight: bold;
	line-height: 1;
}
.cTitle__kv--small {
	display: inline-block;
	font-size: 4rem;
	transform: translateY(-0.5rem);
}
.cTitle__kvLine {
	position: relative;
	display: inline-block;
	line-height: 1;
	transition: opacity .75s ease-in-out;
	opacity: 0;
	z-index: 1;
}
.cTitle__kvLine:nth-of-type(2) {
	transition-delay: .4s;
}
.cTitle__kvLine:nth-of-type(3) {
	transition-delay: .8s;
}
.cTitle__kvLine::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 90%;
	background: linear-gradient(to right, #c00, #001CC5);
	transition: width .75s ease-in-out;
	z-index: -1;
}
.cTitle__kvLine:nth-of-type(2)::before {
	transition-delay: .4s;
}
.cTitle__kvLine:nth-of-type(3)::before {
	transition-delay: .8s;
}
.cTitle__kv._action .cTitle__kvLine {
	opacity: 1;
}
.cTitle__kv._action .cTitle__kvLine::before {
	width: 100%;
}
.cTitle__kvLine + br + .cTitle__kvLine {
	margin-top: 40px;
}
.cTitle__xsmall {
	font-size: 1.6rem;
	font-weight: 700;
	font-style: italic;
	text-align: center;
}
.cTitle__xsmall--normal {
	font-size: 1.6rem;
	font-weight: 400;
}
.cTitle__small {
	font-size: 2rem;
	font-weight: 500;
}
.cTitle__mid {
	font-size: 2.4rem;
	font-weight: 500;
	line-height: 1.2;
}
.cTitle__large {
	position: relative;
	font-size: 5rem;
	font-weight: 700;
	text-align: center;
	line-height: 1.2;
}
.cTitle__large > span {
	position: relative;
	display: inline-block;
}
.cTitle__line span {
	transition: opacity .5s ease-in;
	opacity: 0;
}
.cTitle__line._action span {
	opacity: 1;
}
.cTitle__large > span:last-child::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: -0.3em;
	width: 0;
	height: 4px;
	background: linear-gradient(to right, #c00, #001CC5);
	transition: width .3s;
	transition-delay: .4s;
}
.cTitle__line._action .cTitle__large > span::before {
	width: 100%;
}
.cRadiusBox {
	padding: 30px;
	border-radius: 16px;
	background: #222;
}
[class*="cBtn__type1"] {
	display: inline-block;
	padding: 12px 22px;
	border-radius: 40px;
	background: linear-gradient(to right, #c00, #001CC5);
	font-size: clamp(1.2rem, 1.5vw, 1.7rem);
	font-weight: 500;
}
[data-language="en"] [class*="cBtn__type1"] {
	font-size: clamp(1.2rem, 1.5vw, 1.5rem);
}
.cBtn__type1--gray {
	background: #484848;
}
.cBtn__type1--large {
	display: block;
	width: 300px;
	padding: 18px 0;
	text-align: center;
}
.cIcon__new {
	position: relative;
	display: inline-block;
	margin-right: 5px;
	padding: 0 2px;
	color: #c00;
	line-height: 1;
}
.cIcon__new::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.1em;
	width: 100%;
	height: 0.9em;
	background: #fff;
	z-index: -1;
}
.cIcon__arrow {
	position: relative;
	left: 50%;
	display: block;
	width: 21px;
	height: 21px;
	/* margin-left: 15px; */
	transform: translateX(-50%);
}
.cIcon__arrow::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	display: inline-block;
	width: 100%;
	height: 100%;
	background: url(/color/assets/img/common/icon-arrow.png) no-repeat;
	background-size: 100%;
}
.cModal {
  display: none;
  position: fixed;
	left: 0;
  top: 0;
  width: 100%;
	height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
}
.cModal__content {
  position: relative;
	max-width: 1100px;
  margin: 5% auto;
  background: #111;
  overflow-y: auto;
  height: 80vh;
}
.cModal__content::-webkit-scrollbar {
  display: none;
}
.cModal__content {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.cModal__close {
  position: absolute;
	right: 1.5rem;
  top: 0;
  cursor: pointer;
	font-size: 5rem;
	font-weight: 300;
	z-index: 10;
}

#downloadModal .cModal__inner::-webkit-scrollbar {
  display: none;
}
#downloadModal .cModal__inner {
  position: absolute;
	left: 50%;
	top: 50%;
  max-width: 800px;
  background: #111;
	margin: auto;
  padding: 30px 50px;
  width: 90%;
	height: 75vh;
  transform: translate(-50%,-50%);
	overflow-y: scroll;
	-ms-overflow-style: none;
  scrollbar-width: none;
}

@media (max-width: 767px) {
	[class$="Blk"] {
		padding: 18.6666vw 5.3333vw 0;
	}
	.cTitle__kv {
		font-size: 10.6666vw;
	}
	.cTitle__kv--small {
		font-size: 6.6666vw;
	}
	.cTitle__kvLine + br + .cTitle__kvLine {
		margin-top: 4vw;
	}
	.cTitle__xsmall {
		font-size: 2.6666vw;
	}
	.cTitle__small {
		font-size: 3.2vw;
	}
	.cTitle__mid {
		font-size: 3.2vw;
	}
	.cTitle__large {
		margin-top: 0;
		font-size: 7.8vw;
		line-height: 1.2;
	}
	.cRadiusBox {
		padding: 4vw;
		border-radius: 2.1333vw;
	}
	[class*="cBtn__type1"] {
		padding: 2.8vw 4.4vw;
		font-size: 2.8vw;
	}
	[data-language="en"] [class*="cBtn__type1"] {
		padding: 2.8vw 3.2vw;
		font-size: 2.8vw;
}
	.cBtn__type1--large {
		width: 53.3333vw;
		padding: 3.8vw 0;
		font-size: 3.2vw;
	}
	.cModal__content {
		height: 95vh;
	}
	#downloadModal .cModal__inner {
		height: 95vh;
		padding: 5.3333vw;
	}
	.cModal__close {
		position: fixed;
		font-size: 10.6666vw;
	}
	.cModal__close {
		right: 2.4vw;
		top: 0;
	}
	.cIcon__arrow {
		width: 4.2vw;
		height: 4.2vw;

	}
	.cIcon__arrow::before {
		width: 100%;
		height: 100%;
	}
}


/* Utility
-------------------------------------------------- */
.uFlex {
	display: flex;
}
.uMt--adjust0 {
	margin-top: 0 !important;
}
.uText__xsmall {
	font-size: 1.4rem;
	line-height: 1.6;
}
.uText__small {
	font-size: 1.6rem;
	line-height: 1.6;
}
[class*="uText__mid"] {
	font-size: 2rem;
	line-height: 2;
}
.uText__mid--bold {
	font-weight: 600;
}
.uText__large {
	font-size: 2.4rem;
	line-height: 1.6;
}
.uText__note {
	margin-left: 1.25em;
	text-indent: -1.25em;
	line-height: 1.4;
}
.uText__note--num {
	margin-left: 1.25em;
	text-indent: -1.25em;
	line-height: 1.4;
}
.uText__note li + li,
.uText__note--num li + li {
	margin-top: 15px;
}
.uText__red {
	color: #c00;
}
.uText--italic {
	font-style: italic;
}
.uText--left {
	text-align: left !important;
}
.uText--center {
	text-align: center !important;
}
.uText--right {
	text-align: right !important;
}
.uLink__line {
	text-decoration: underline !important;
}

@media (min-width: 768px ) {
	.uFlex--pc {
		display: flex;
	}
	.uHidden--pc {
		display: none;
	}
	.uMt--adjust1 {
		margin-top: 10px !important;
	}
	.uMt--adjust2 {
		margin-top: 15px !important;
	}
	.uMt--adjust3 {
		margin-top: 20px !important;
	}
	.uMt--adjust4 {
		margin-top: 25px !important;
	}
	.uMt--adjust5 {
		margin-top: 30px !important;
	}
	.uMt--adjust6 {
		margin-top: 50px !important;
	}
	.uMt--adjust7 {
		margin-top: 60px !important;
	}
	.uMt--adjust8 {
		margin-top: 80px !important;
	}
	.uMt--adjust9 {
		margin-top: 100px !important;
	}
	.uMt--adjust10 {
		margin-top: 150px !important;
	}
}

@media (max-width: 767px ) {
	.uFlex--sp {
		display: flex;
	}
	.uHidden--sp {
		display: none;
	}
	.uMt--adjust1 {
		margin-top: 1.3333vw !important;
	}
	.uMt--adjust2 {
		margin-top: 2.6666vw !important;
	}
	.uMt--adjust3 {
		margin-top: 3.2vw !important;
	}
	.uMt--adjust4 {
		margin-top: 4.8vw !important;
	}
	.uMt--adjust5 {
		margin-top: 6.6666vw !important;
	}
	.uMt--adjust6 {
		margin-top: 8vw !important;
	}
	.uMt--adjust7 {
		margin-top: 8vw !important;
	}
	.uMt--adjust8 {
		margin-top: 10.66666vw !important;
	}
	.uMt--adjust9 {
		margin-top: 13.3333vw !important;
	}
	.uMt--adjust10 {
		margin-top: 50vw !important;
	}
	.uText__xsmall {
		font-size: 2.6666vw;
	}
	.uText__small {
		font-size: 2.6666vw;
	}
	[class*="uText__mid"] {
		font-size: 3.2vw;
	}
	.uText__large {
		font-size: 4.2666vw;
	}
	.uLine__top--wh {
		padding-top: 4vw;
	}
}


/* detailBlk
-------------------------------------------------- */
.detailBlk__categoryList {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 30px;
}
.detailBlk__categoryList li {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 23.5%;
	height: 45px;
	border: 1px solid #959595;
	background: #373737;
	font-size: 1.6rem;
	cursor: pointer;
}
.detailBlk__categoryList li.current {
	border-color: #c00;
	background: rgba(204, 0, 0, .1);
	color: #c00;
	cursor: default;
}
.detailBlk__categoryImg {
	position: relative;
}
.detailBlk__imgContent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.detailBlk__imgContent.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.detailBlk__imgContent img {
	width: 100%;
}
[class*="detailBlk__figcaption"] {
	position: absolute;
	bottom: 6%;
	font-size: 2rem;
	font-weight: 600;
	z-index: 10;
}
.detailBlk__figcaptionL,
.detailBlk__figcaptionR {
  transition: opacity 0.2s ease;
}
.detailBlk__figcaptionL {
	left: 25%;
	transform: translateX(-50%);
}
.detailBlk__figcaptionR {
	right: 25%;
	transform: translateX(50%);
}

@media (hover: hover) {
	.detailBlk__categoryList li {
		transition: background .5s;
	}
	.detailBlk__categoryList li:hover {
		border-color: #c00;
		background: rgba(204, 0, 0, .1);
		color: #c00;
	}
}

@media (max-width: 767px) {
	.detailBlk__categoryList {
		margin-top: 4vw;
		gap: 4vw 0;
	}
	.detailBlk__categoryList li {
		width: 48%;
	}
	[class*="detailBlk__figcaption"] {
		font-size: 2.6666vw;
	}
}


/* animation
-------------------------------------------------- */
.fadeIn {
	transition: opacity 1s ease-in-out;
	will-change: opacity;
	opacity: 0;
}

.fadeIn._action {
	opacity: 1;
}

.slideUp {
	transition: opacity 1s ease-in-out, transform 1s ease-in-out;
	transform: translateY(5px);
	will-change: transform, opacity;
	opacity: 0;
}

.slideUp._action {
	transform: translateY(0);
	opacity: 1;
}

.slideRight {
	transition: opacity 1s ease-in-out, transform 1s ease-in-out;
	transform: translateX(-10px);
	opacity: 0;
}

.slideRight._action {
	transform: translateX(0);
	opacity: 1;
}

.slideLeft {
	transition: opacity 1s ease-in-out, transform 1s ease-in-out;
	transform: translateX(10px);
	opacity: 0;
}

.slideLeft._action {
	transform: translateX(0);
	opacity: 1;
}
