@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400&display=swap');

/* Base
------------------------------------------------------------ */
html {
	font-size: 62.5%;
}
body {
	line-height: 1.6;
	color: #333333;
	margin: 0;
	padding: 0;
	background: #ffffff;
	font-family: 'Noto Sans JP', sans-serif;
	word-wrap: break-word;
	-webkit-text-size-adjust:100%;
}
@media only screen and (max-width: 767px) {
	body {
	}
}

img {
	vertical-align: top;
	max-width: 100%;
	height: auto;
	image-rendering: -webkit-optimize-contrast;
}

/* Link
------------------------------------------------------------ */
a { outline: none; }
a:link {
	color: #666666;
	text-decoration: none;
}
a:visited {
	color: #666666;
}
a:hover {
	color: #666666;
	text-decoration: underline;
}

a img {
	transition: 0.3s;
}
a:hover img {
	opacity: 0.7;
	filter: alpha(opacity=70);
}


/* wrapper
-------------------------------------------------------------------*/
.wrapper {
}

/*----------------------------------------------
	areaContainer
----------------------------------------------*/
.areaContainer {
	width: 100%;
	height: 100vh;
	display: flex;
}
@media only screen and (max-width: 480px) {
	.areaContainer {
		flex-direction: column;
	}
}

/*----------------------------------------------
	bg
----------------------------------------------*/
#video-area {
	order: 2;
	position: relative;
    z-index: -1;/*最背面に設定*/
	width: 62vw;
    overflow: hidden;
}
@media only screen and (max-width: 480px) {
	#video-area {
		order: 1;
		width: 100vw;
		height: 40vh;
	}
}

#video {
    /*天地中央配置*/
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*縦横幅指定*/
    width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
    height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
    min-height: 100%;
    min-width: 100%;
}

/*----------------------------------------------
	contentArea
----------------------------------------------*/
.contentArea {
	order: 1;
	width: 38vw;
	min-width: 300px;
	background: #ffffff;
	box-sizing: border-box;
	position: relative;
}
@media only screen and (max-width: 480px) {
	.contentArea {
		order: 2;
		width: 100vw;
		height: 60vh;
	}
}
.header {
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.header .logo {
	margin: 0;
	width: 200px;
}
.header .navBox {
	margin: 0;
}
.header .navBox .navList {
	margin: 2em 0 0 0;
	padding: 0;
	list-style-type: none;
	font-size: 1.6rem;
	font-weight: normal;
}
.header .navBox .navList > li {
	margin: 0;
}
.header .navBox .navList > li + li {
	margin-top: 0.5em;
}
.snsLinkList {
	margin: 3em 0 0 0;
	padding: 0;
	list-style-type: none;
	display: flex;
}
.snsLinkList > li {
	margin: 0;
	width: 40px;
}
.snsLinkList > li a {
	display: flex;
	justify-content: center;
	align-items: center;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	overflow: hidden;
}
.snsLinkList > li.x a {
	padding: 10px;
	background: #000000;
}
.footer {
	position: absolute;
	left: 0;
	bottom: 2vw;
	width: 100%;
}
.footer .cr {
	margin: 0.5em 0 0 0;
	color: #999999;
	text-align: center;
	font-size: 1.2rem;
}

