@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,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
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;
	vertical-align: baseline;
	font: inherit;
	font-size: 100%;
}

main,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

u {
	text-decoration: none;
}

i {
	font-style: normal;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-spacing: 0;
	border-collapse: collapse;
}
*/

/*===============*/
/* mainvisual */
/*===============*/
.mainvisual {
	background-color: #030A1E;
}

.mainvisual * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;

	-webkit-tap-highlight-color: transparent;
}

.mainvisual>div {
	position: relative;
	overflow: hidden;
	margin: 0 auto;
	min-height: 800px;
	max-width: 1920px;
	max-height: 1080px;
	height: 100vh;
	background-size: cover;
}

.mainvisual>div::before,
.mainvisual>div::after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 5;
	background: url(../img/mainvisual_line.png) center center;
	background-size: 5%;
	content: "";
	opacity: 0;
}

.mainvisual .img {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.mainvisual .img::before,
.mainvisual .img::after {
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 10;
	width: 15%;
	content: "";
	opacity: 0;
	transition: opacity .5s;
}

.mainvisual .img::before {
	left: -1px;
	background: -moz-linear-gradient(left, rgba(3, 10, 30, 1), rgba(3, 10, 30, 0));
	background: -webkit-linear-gradient(left, rgba(3, 10, 30, 1), rgba(3, 10, 30, 0));
	background: linear-gradient(to right, rgba(3, 10, 30, 1), rgba(3, 10, 30, 0));
}

.mainvisual .img::after {
	right: -1px;
	background: -moz-linear-gradient(right, rgba(3, 10, 30, 1), rgba(3, 10, 30, 0));
	background: -webkit-linear-gradient(right, rgba(3, 10, 30, 1), rgba(3, 10, 30, 0));
	background: linear-gradient(to left, rgba(3, 10, 30, 1), rgba(3, 10, 30, 0));
}

@media (min-width: 1921px) {

	.mainvisual .img::before,
	.mainvisual .img::after {
		opacity: 1;
	}
}

.mainvisual .img>div {
	position: absolute;
	overflow: hidden;
	width: 50%;
	height: 50%;
}

.mainvisual .img>div:nth-child(1) {
	right: 50%;
	bottom: 50%;
}

.mainvisual .img>div:nth-child(2) {
	bottom: 50%;
	left: 50%;
}

.mainvisual .img>div:nth-child(3) {
	top: 50%;
	right: 50%;
}

.mainvisual .img>div:nth-child(4) {
	top: 50%;
	left: 50%;
}

.mainvisual .img>div>span {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	background: center center no-repeat;
	background-size: cover;
	transform: translate(-50%, -50%);
}

.mainvisual .img>div:nth-child(1)>span {
	background-image: url(../img/mainvisual_1.jpg);
}

.mainvisual .img>div:nth-child(2)>span {
	background-image: url(../img/mainvisual_2.jpg);
}

.mainvisual .img>div:nth-child(3)>span {
	background-image: url(../img/mainvisual_3.jpg);
}

.mainvisual .img>div:nth-child(4)>span {
	background-image: url(../img/mainvisual_4.jpg);
}

.mainvisual>div>i {
	position: absolute;
	top: 0;
	left: 50%;
	width: 100%;
	height: 200%;
	background: url(../img/mainvisual_program.png) center top repeat-y;
	background-size: auto 50%;
	opacity: .4;
	transform: translateX(-50%);
}


@media screen and (max-width:768px) {
	.mainvisual .img>div:nth-child(1)>span {
		background-image: url(../img/mainvisual_1_sp.jpg);
	}

	.mainvisual .img>div:nth-child(2)>span {
		background-image: url(../img/mainvisual_2_sp.jpg);
	}

	.mainvisual .img>div:nth-child(3)>span {
		background-image: url(../img/mainvisual_3_sp.jpg);
	}

	.mainvisual .img>div:nth-child(4)>span {
		background-image: url(../img/mainvisual_4_sp.jpg);
	}

	.mainvisual>div>i {
		background: url(../img/mainvisual_program_sp.png) center top repeat-y;
	}
}

/* h1 */
.mainvisual h1 {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 10;
	width: 100%;
	color: #FFF;
	text-align: center;
	white-space: nowrap;
	letter-spacing: .2em;
	font-weight: 700;
	font-style: normal;
	font-size: 72px;
	font-family: noto-sans-cjk-jp, sans-serif;
	line-height: 1.4;
	transform: translate(-50%, -50%);
}

.mainvisual h1>* {
	display: inline-block;
	vertical-align: top;
	text-align: left;
}

.mainvisual h1 span {
	position: relative;
	z-index: 5;
}

.mainvisual h1 strong {
	position: relative;
	width: 2.4em;
}

.mainvisual h1 strong b {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
}

.mainvisual h1 strong b:first-child {
	color: #FFF;
	text-shadow: none;
	opacity: 1;
	transform: scale(1);
}

.mainvisual h1 strong b:last-child {
	color: #FFF;
	text-shadow: none;
	opacity: 0;
	transform: scale(1);
}

.mainvisual h1 strong b:last-child::before {
	content: "流通";
}

@media screen and (max-width:768px) {
	.mainvisual>div {
		min-height: 0;
		height: 25em;
	}

	.mainvisual h1 {
		letter-spacing: .1em;
		font-size: 10vw;
	}

	.mainvisual h1 strong {
		width: 2.2em;
	}
}

/*===============*/
/* test */
/*===============*/
.test {
	position: relative;
	padding: 100px 0;
	min-height: 2000px;
}

.test h2 {
	text-align: center;
	font-weight: 700;
	font-style: normal;
	font-size: 30px;
	font-family: noto-sans-cjk-jp, sans-serif;
	opacity: .25;
}