@CHARSET 'UTF-8';
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', '游ゴシック  Medium', meiryo, sans-serif;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.6;
    letter-spacing: 1px;
    color: #000;
    background-color: #000;
}
body::before {
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100vh;
    content: '';
    background-image: url(../img/mainvisual-sp.png);
    background-repeat: no-repeat;
    /* 	background-attachment: fixed; */
    background-position: top center;
    background-size: 100%;
}
#movie {
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 50%;
    width: 100%;
    max-width: 1920px;
    height: 100%;
    min-height: 100%;
    margin-left: -960px;
    text-align: center;
}
header {
    position: fixed;
    z-index: 999999;
    top: 0;
    left: 0;
    width: 100%;
}
header nav {
    /*position: absolute;*/
    position: fixed;
    z-index: 9999;
    /*top: 50%;*/
    top: 0;
    bottom: 0;
    left: 50%;
    /* margin-right: 10px; */
    display: none;
    overflow-y: auto;
    width: 250px;
    margin-top: 50px;
    margin-left: -130px;
    text-align: center;
}
header nav ul {
    margin-bottom: 49px;
}
header nav ul li {
    margin-top: 22px;
    text-align: center;
}
header a {
    transition: all .5s ease;
}
header a:hover {
    opacity: .7;
}
header .menu-title {
    display: block;
    text-align: center;
}
header .menu-title img {
    width: 50%;
}
header nav .box-table {
    box-sizing: border-box;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 42px;
}
header nav .box-left {
    padding-right: 3px;
    text-align: center;
}
header nav .box-center {
    padding-left: 2px;
}
header nav .box-right {
    padding-left: 4px;
}
header nav .box-table img {
    width: 100%;
}
.overlay {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    background-color: #715618;
    background-image: url(../img/menu-bg.png);
    background-repeat: no-repeat;
    background-position: center;
}
.menu-btn {
    position: fixed;
    z-index: 99999;
    top: 20px;
    right: 10px;
    display: none;
}
.menu-btn img {
    width: 50px;
}
footer {
    position: relative;
    z-index: 11;
    margin-bottom: 74px;
    padding-top: 30px;
    padding-bottom: 50px;
    opacity: .8;
    background-color: #715618;
}
footer ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 90%;
    margin-right: auto;
    margin-left: auto;
}
footer ul li {
    padding-right: 20px;
    list-style: none;
    text-align: center;
}
footer ul li a {
    text-decoration: none;
    color: #fff;
}
footer ul li a:hover {
    color: #f00;
}
footer small {
    display: block;
    text-align: center;
    color: #fff;
}
footer small a {
    font-family: '游明朝';
    text-decoration: underline;
    color: #fff;
}
footer small a:hover {
    text-decoration: underline;
    color: #f00;
}
.clear-both {
    clear: both;
}
.page-top {
    position: fixed;
    z-index: 99;
    right: 10px;
    bottom: 100px;
    display: none;
}
.page-top img {
    width: 50px;
}
.contact-fixed {
    position: fixed;
    z-index: 99;
    bottom: 0;
    left: 0;
    display: none;
    box-sizing: border-box;
    width: 100%;
    padding: 10px;
    background-color: rgba(0, 0, 0, .8);
}
.contact-fixed .box-table {
    box-sizing: border-box;
    width: 100%;
    max-width: 320px;
    margin-right: auto;
    margin-left: auto;
}
.contact-fixed img {
    width: 100%;
}
.contact-fixed .box-left {
    padding-right: 5px;
}
.contact-fixed .box-right {
    padding-left: 5px;
}
.policy {
    margin-top: 100px;
    margin-bottom: 0 !important;
    opacity: .7;
    background-color: #b6963f;
}
/*
=================
その他プロパティ
=================
*/
.sp-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%;
    content: '';
    -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;
    opacity: 0;
    background-color: rgba(255, 255, 255, .4);
}
@keyframes reflection {
    0% {
        transform: scale(0) rotate(45deg);
        opacity: 0;
    }
    80% {
        transform: scale(0) rotate(45deg);
        opacity: .5;
    }
    81% {
        transform: scale(4) rotate(45deg);
        opacity: 1;
    }
    100% {
        transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}
@-webkit-keyframes reflection {
    0% {
        -webkit-transform: scale(0) rotate(45deg);
        opacity: 0;
    }
    80% {
        -webkit-transform: scale(0) rotate(45deg);
        opacity: .5;
    }
    81% {
        -webkit-transform: scale(4) rotate(45deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}
@-moz-keyframes reflection {
    0% {
        -moz-transform: scale(0) rotate(45deg);
        opacity: 0;
    }
    80% {
        -moz-transform: scale(0) rotate(45deg);
        opacity: .5;
    }
    81% {
        -moz-transform: scale(4) rotate(45deg);
        opacity: 1;
    }
    100% {
        -moz-transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}
@-ms-keyframes reflection {
    0% {
        -ms-transform: scale(0) rotate(45deg);
        opacity: 0;
    }
    80% {
        -ms-transform: scale(0) rotate(45deg);
        opacity: .5;
    }
    81% {
        -ms-transform: scale(4) rotate(45deg);
        opacity: 1;
    }
    100% {
        -ms-transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}
@-o-keyframes reflection {
    0% {
        -o-transform: scale(0) rotate(45deg);
        opacity: 0;
    }
    80% {
        -o-transform: scale(0) rotate(45deg);
        opacity: .5;
    }
    81% {
        -o-transform: scale(4) rotate(45deg);
        opacity: 1;
    }
    100% {
        -o-transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}