@charset "UTF-8";
/****************************************
Resetting
*****************************************/
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 {
	border: 0;
	font-size: 100%;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, main,hgroup, menu, nav, section {
	display: block;
}/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, main,hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol,ul,li{
	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;
}

input[type="submit"],
input[type="button"],
input[type="reset"]{
	appearance: button;
	border: none;
	border-radius: 0;
	box-sizing: border-box;
	cursor: pointer;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
}

a{
	text-decoration: none;
}

.clearfix:after {
    content: "";
    display: block;    /* または display:table; */
    clear: both;
}
/******************************************
normarise
******************************************/
* {
	box-sizing:border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}

html {
    height: 100%;
	-webkit-font-smoothing: antialiased;
}
/*


*/
body {
    width: 100%;
    height: 100%;
    background-color: white;
    color: black;
    font-family: 'Barlow', sans-serif;
    background: black;
    font-size: 12px;
}

a {
    color: black;
    text-decoration: none;
    cursor: default !important;
}
/******************************************
header
******************************************/
header {
    width: 100%;
    height: 70px;
    text-align: center;
    position: absolute;
    top: 40px;
    z-index: 90;
}

h1 {
    margin: 0;
    padding: 0;
}

h1 a {
    transition: all 500ms 0s ease;
}

h1 a:hover {
    opacity: 0.3;
}

h1 img {
    width: 335px;
    height: auto;
}

@media screen and (max-width: 480px) {
    h1 img {
        width: 78%;
        height: auto;
    }
}
/******************************************
nav
******************************************/
nav {
    margin: 20px 0;
    padding: 0;
}

nav ul {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    list-style: none;
}

nav li {
    padding: 0 12px;
}

nav li a {
    color: white;
    transition: all 500ms 0s ease;
}

header.header-b nav li a {
    color: black;
}

nav li a:hover {
    opacity: 0.3;
}

@media screen and (max-width: 480px) {  
   
}
/******************************************
video
******************************************/
.video {
    position:relative;
    overflow: hidden;
}

.fitMovie {
    position: absolute;
}
/******************************************
sound
******************************************/
.sound {
    position: fixed;
    top: 40px;
    right: 40px;
    width: 23px;
    height: auto;
    cursor: default;
    z-index: 110;
}

@media screen and (max-width: 480px) {
	.sound {
        top: auto;
        right: 20px;
        bottom: 20px;
    }
}   
/******************************************
subNav
******************************************/
.subNav {
    position: fixed;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

.subNav .subNav-lists {
    display: inline-flex;
    justify-content: space-between;
    margin: 0 auto;
    width: auto;
    font-size: 14px;
    font-weight: normal;
    color: white;
}

.subNav.subNav-b .subNav-lists {
    color: black;
}

.subNav .subNav-lists li {
    padding: 0 12px;
    cursor: default;
    transition: all 500ms 0s ease;
}

.subNav .subNav-lists li:hover {
    opacity: 0.3;
}
/******************************************
footer
******************************************/
footer {
    clear: both;
    text-align: center;
    padding: 0 0 40px 0;
    margin: 200px auto 0 auto;
}

@media screen and (max-width: 480px) {
	footer {
        font-size: 10px;
        margin: 120px auto 0 auto;
    }
}   