@charset "UTF-8";

/*
ブレイクポイント
SP 〜519px
tab 520px ~ 959px (min-width:520px)
pc 960px~ (min-width:960px)
*/


/* ----------------------------
 import css
---------------------------- */
@import url("common.css");


/*======================
変数宣言
======================*/
:root {
	--bg-color: #0a0a0a;
	--text-color: #fff;
	--accent-color: #a80032;
	--size-sm: 1.2rem;
	--size-md: 1.6rem;
	--size-lg: 2.0rem;
	--size-xl: 4.2rem;
	--size-xxl: 5.1rem;
	--size-xxxl: 6.0rem;
	--font: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	--font-title: "Gill Sans", sans-serif;
	--gutter-base: 10px;
	--contents-side-gutter: 20px;
	--section-gutter: 100px;
	--section-gutter-pc: 160px;
	--section-width: 1200px;
}


/*======================
基本設定
======================*/

html {
	font-size: 62.5%;
	scroll-behavior: smooth;
}

body {
	color: var(--text-color);
	font-size: var(--size-md);
	line-height: 1.75;
	font-family: var(--font);
	box-sizing: border-box;
	background-color: var(--bg-color);
}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
	color: var(--text-color);
}

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

h2 {
	font-family: var(--font-title);
	font-optical-sizing: auto;
	font-size: var(--size-xl);
	font-weight: 300;
	font-style: normal;
	text-align: center;
	line-height: 1.6;
}

h2 span {
	font-size: 14px;
	display: block;
}

h2.white {
	color: #fff;
}

h3 {
	font-family: var(--font-title);
	font-optical-sizing: auto;
	font-size: var(--size-lg);
	font-weight: 300;
	font-style: normal;
	line-height: 1.6;
}

.body {
	padding: 0 var(--contents-side-gutter);
}

.btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 200px;
	margin: 0 auto;
	padding: .9em 2em;
	border: 1px solid #FFF;
	border-radius: 25px;
	background-color: var(--accent-color);
	color: #FFF;
	font-size: 1em;
	transition: 0.5s;
}

.btn::after {
	transform: rotate(45deg);
	width: 5px;
	height: 5px;
	margin-left: 10px;
	border-top: 2px solid #FFF;
	border-right: 2px solid #FFF;
	content: '';
}

.btn:hover {
	background-color: #0a0a0a;
}

/*=============================================================
ローディングアニメーション
=============================================================*/
.loader {
	position: fixed;
	width: 100%;
	height: 100vh;
	background-color: #0a0a0a;
	z-index: 999;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.loading_logo {
	width: 200px;
}

.fadeUp {
	animation-name: fadeUpAnime;
	animation-duration: 0.5s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes fadeUpAnime {
	from {
		opacity: 0;
		transform: translateY(100px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* 点滅 */
@keyframes blinking {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

/* 要素にアニメーションを適用 */
.blink {
	animation: blinking 0.5s ease-in-out infinite alternate;
}


/*=============================================================
#header
=============================================================*/

#header {
	max-width: 1200px;
	min-width: 1000px;
	height: 100px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 1000 !important;
	transition: 3s;
}

#header .hum_nav ul {
	display: flex;
}

#header .hum_nav ul li:not(last-child) {
	padding-right: 30px;
}

#header .hum_nav ul li a {
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	font-size: 14px;
}

/*=============================================================
#mainimage
=============================================================*/
#mainimage {
	width: 100%;
	height: 100vh;
	position: relative;
	overflow: hidden;
	z-index: -10;
	margin-top: -100px;
}

#mainimage video {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1000;
	object-fit: cover;
}

#mainimage::before {
	content: '';
	position: absolute;
	top: -90%;
	bottom: 90%;
	left: 0;
	right: 0;
	background-color: var(--accent-color);
	transform: skewY(20deg);
	mix-blend-mode: multiply;
	overflow: hidden;
	z-index: -5;
}

#mainimage::after {
	content: '';
	position: absolute;
	top: 90%;
	bottom: -90%;
	left: 0;
	right: 0;
	background-color: var(--accent-color);
	transform: skewY(20deg);
	mix-blend-mode: multiply;
	overflow: hidden;
	z-index: -5;
}

#mainimage .copy {
	position: absolute;
	bottom: 5%;
	left: 5%;
	/* mix-blend-mode: overlay; */
}

#mainimage .copy h1 {
	color: #fff;
	line-height: 1.5em;
	text-align: left;
	font-family: var(--font-title);
	font-optical-sizing: auto;
	font-size: var(--size-xxxl);
	font-weight: 300;
	font-style: normal;
	text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.2);
}

/*=============================================================
#FOOTER
=============================================================*/
.pagetop {
	display: none;
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	text-align: center;
	z-index: 8000;
	cursor: pointer;
}

.pagetop span {
	display: block;
	border-radius: 50%;
	background: var(--accent-color);
	color: #fff;
	border: solid 1px #fff;
	font-size: 18px;
	text-align: center;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	text-decoration: none;
	font-weight: bold;
	height: 100%;
	width: 100%;
	line-height: 2.5;
	font-family: Arial, Helvetica, sans-serif;
}

.pagetop span:hover {
	background-color: var(--bg-color);
}

#footer {
	width: 100%;
	padding: 30px 0;
}

#footer .logo {
	margin: 0 auto;
	text-align: center;
}

#footer .logo img {
	margin: 0 auto;
}

#footer .footer_box {
	margin: 0 auto;
	max-width: 1200px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 30px 0;
}

#footer .footer_box .left {
	text-align: left;
}

#footer .footer_nav ul {
	display: flex;
	gap: 30px;
}

#footer .footer_nav ul li a {
	color: #fff;
	text-decoration: none;
	font-size: 14px;
}

#footer p.copyright {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 150%;
	color: #919191;
	text-align: center;
}

/* ===============ここからmin-width:959px=============== */
@media screen and (max-width:959px) {
	#header {
		max-width: 100%;
		min-width: 100%;
		height: 50px;
		margin: 0 auto;
		z-index: 1000 !important;
	}

	#header .left {
		padding-top: 30px;
		padding-left: 10px;
	}

	#header .hum_nav ul {
		display: block;
	}

	header nav {
		opacity: 0;
		visibility: hidden;
		transition: 0.3s;
		position: fixed;
		top: 0;
		right: 0;
		background-color: var(--bg-color);
		width: 100%;
		height: 100vh;
		padding-top: calc(var(--gutter-base)*10);
		z-index: 100;
	}

	header .hum_menu {
		color: var(--text-color);
		padding: calc(var(--gutter-base)*2) var(--gutter-base);
		line-height: 1;
		display: flex;
		align-items: center;
		gap: var(--gutter-base);
		z-index: 10000;
		position: fixed;
		top: 0;
		right: 0;
	}

	.on nav {
		opacity: 1;
		visibility: visible;
	}

	header .hum_menu .hum_menu_line::before,
	header .hum_menu .hum_menu_line::after {
		content: '';
		background-color: var(--text-color);
		width: 40px;
		height: 2px;
		display: block;
		transition: 0.3s;
	}

	header .hum_menu .hum_menu_line::before {
		transform: translateY(-2px);
	}

	header .hum_menu .hum_menu_line::after {
		transform: translateY(4px);
	}

	.on .hum_menu .hum_menu_line::before {
		transform: translateY(2px) rotate(145deg);
	}

	.on .hum_menu .hum_menu_line::after {
		transform: translateY(0) rotate(-145deg);
	}

	header ul li {
		font-size: var(--size-lg);
		margin-bottom: 30px;
		text-align: center;
		z-index: 10000;
	}

	header ul li {
		font-size: var(--size-lg);
		margin-bottom: 30px;
		text-align: center;
		z-index: 10000;
	}

	#header .hum_nav ul li:not(last-child) {
		padding-right: 0;
	}

	header ul li a {
		transition: all .8s;
		display: block;
		color: #fff;
	}

	header ul li a img {
		margin: 0 auto;
	}

	header ul li a:hover {
		transform: translateY(-5px);
	}

	/*=============================================================
	#mainimage
	=============================================================*/

	#mainimage {
		width: 100%;
		height: 90vh;
		position: relative;
		overflow: hidden;
		z-index: -10;
		margin-top: -50px;
	}

	#mainimage .copy {
		position: absolute;
		bottom: 5%;
		left: 5%;
	}

	#mainimage .copy h1 {
		font-size: var(--size-xxl);
	}

	#footer .footer_box {
		width: 90%;
		margin: 0 auto;
		display: block;
	}

	#footer .footer_box .left {
		margin-bottom: 30px;
		text-align: center;
	}

	#footer .footer_box .right ul {
		justify-content: center;
	}

	#footer .footer_box .right ul {
		gap: 10px;
	}
}

/* ===============ここまでmin-width:959px=============== */