@CHARSET "UTF-8";
html {}
body {
    background-color: #000000;
    color: #000000;
    letter-spacing: 1px;
    font-weight: normal;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', '游ゴシック  Medium', meiryo, sans-serif;
    line-height: 1.6;
}
#movie {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 50%;
    z-index: 1;
    margin-left: -960px;
    min-height: 100%;
    max-width: 1920px;
    width: 100%;
    height: 100%;
    text-align: center;
}
#container {}
header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
    width: 100%;
}
header h1 {}
header nav {
    /*position: absolute;*/
    position: fixed;
    /*top: 50%;*/
    top: 0;
    bottom: 0;
    left: 50%;
    z-index: 9999;
    display: none;
    overflow-y: auto;
    margin-top: 150px;
    margin-left: -210px;
    width: 387px;
    text-align: center;
}
header nav ul {
    margin-bottom: 69px;
}
header nav ul li {
    margin-top: 22px;
    text-align: center;
}
header a {
    transition: all 0.5s ease;
}
header a:hover {
    opacity: 0.7;
}
header .menu-title {
    display: block;
    text-align: center;
}
header nav .box-table {
    margin-top: 10px;
    margin-bottom: 42px;
    width: 100%;
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    display: none;
    width: 100%;
    height: 100%;
    background-color: #715618;
    background-image: url(../img/menu-bg.png);
    background-position: center;
    background-repeat: no-repeat;
}
.menu-btn {
    position: fixed;
    top: 20px;
    left: 50%;
    z-index: 30;
    display: none;
    margin-left: 500px;
}
footer {
    position: relative;
    z-index: 11;
    padding-top: 30px;
    padding-bottom: 50px;
    background-color: #715618;
    opacity: 0.8;
}
footer ul {
    display: flex;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
}
footer ul li {
    padding-left: 20px;
    list-style: none;
    text-align: center;
}
footer ul li a {
    color: #ffffff;
    text-decoration: none;
}
footer ul li a:hover {
    color: #ff0000;
}
footer small {
    display: block;
    color: #909090;
    text-align: center;
}
footer small a {
    color: #ffffff;
    text-decoration: underline;
    font-family: '游明朝';
}
footer small a:hover {
    color: #ff0000;
    text-decoration: underline;
}
.clear-both {
    clear: both;
}
.page-top {
    position: fixed;
    right: 50%;
    bottom: 10px;
    z-index: 99;
    display: none;
    margin-right: -570px;
}
.policy {
    margin-top: 100px;
    background-color: #B6963F !important;
    opacity: 0.7 !important;
}
/*
=================
その他プロパティ
=================
*/
.pc-none {
    display: none !important;
}
.box-table {
    display: table;
}
.box-left {
    display: table-cell;
}
.box-center {
    display: table-cell;
}
.box-right {
    display: table-cell;
}
.valign-top {
    vertical-align: top;
}
.valign-middle {
    vertical-align: middle;
}
.valign-bottom {
    vertical-align: bottom;
}
.talign-left {
    text-align: left;
}
.talign-center {
    text-align: center;
}
.talign-right {
    text-align: right;
}
.reflection {
    position: relative;
    display: block;
    overflow: hidden;
}
.reflection :after {
    position: absolute;
    top: -180px;
    left: 0;
    width: 20%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.4);
    content: '';
    opacity: 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-animation: reflection 3s ease-in-out infinite;
    -moz-animation: reflection 3s ease-in-out infinite;
    -ms-animation: reflection 3s ease-in-out infinite;
    -o-animation: reflection 3s ease-in-out infinite;
    animation: reflection 3s ease-in-out infinite;
}
/*追記　ボタン反射*/
@keyframes reflection {
    0% {
        opacity: 0;
        transform: scale(0) rotate(45deg);
    }
    80% {
        opacity: 0.5;
        transform: scale(0) rotate(45deg);
    }
    81% {
        opacity: 1;
        transform: scale(4) rotate(45deg);
    }
    100% {
        opacity: 0;
        transform: scale(50) rotate(45deg);
    }
}
@-webkit-keyframes reflection {
    0% {
        opacity: 0;
        -webkit-transform: scale(0) rotate(45deg);
    }
    80% {
        opacity: 0.5;
        -webkit-transform: scale(0) rotate(45deg);
    }
    81% {
        opacity: 1;
        -webkit-transform: scale(4) rotate(45deg);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(50) rotate(45deg);
    }
}
@-moz-keyframes reflection {
    0% {
        opacity: 0;
        -moz-transform: scale(0) rotate(45deg);
    }
    80% {
        opacity: 0.5;
        -moz-transform: scale(0) rotate(45deg);
    }
    81% {
        opacity: 1;
        -moz-transform: scale(4) rotate(45deg);
    }
    100% {
        opacity: 0;
        -moz-transform: scale(50) rotate(45deg);
    }
}
@-ms-keyframes reflection {
    0% {
        opacity: 0;
        -ms-transform: scale(0) rotate(45deg);
    }
    80% {
        opacity: 0.5;
        -ms-transform: scale(0) rotate(45deg);
    }
    81% {
        opacity: 1;
        -ms-transform: scale(4) rotate(45deg);
    }
    100% {
        opacity: 0;
        -ms-transform: scale(50) rotate(45deg);
    }
}
@-o-keyframes reflection {
    0% {
        opacity: 0;
        -o-transform: scale(0) rotate(45deg);
    }
    80% {
        opacity: 0.5;
        -o-transform: scale(0) rotate(45deg);
    }
    81% {
        opacity: 1;
        -o-transform: scale(4) rotate(45deg);
    }
    100% {
        opacity: 0;
        -o-transform: scale(50) rotate(45deg);
    }
}
.flex {
    display: flex;
    justify-content: space-between;
}