@charset "UTF-8";
body {
  background-color: #000;
  color: #fff;
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 400;
  font-style: normal;
  overflow-x: hidden; }

h1, h2, h3 {
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 700;
  font-style: normal; }

/*----------------------*/
.container-fluid {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto; }

section {
  display: block;
  background-size: cover !important;
  background-position: center center !important;
  background-attachment: fixed; }

.fadeLayer {
  opacity: 0; }

.pvh {
  padding: 20vh 0 10vh; }

.pvh2 {
  padding: 10vh 0 10vh; }

@media screen and (min-width: 768px) {
  #menu {
    background-color: rgba(0, 0, 0, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 80px;
    color: #fff;
    z-index: 200; }
    #menu .container-fluid {
      position: relative;
      height: 80px; }
      #menu .container-fluid .topLogo {
        display: block;
        position: absolute;
        z-index: 250;
        top: 15px;
        left: 15px; }
        #menu .container-fluid .topLogo img {
          height: 50px; }
      #menu .container-fluid #menuList {
        position: absolute;
        top: 20px;
        right: 15px;
        z-index: 300;
        list-style: none;
        display: block;
        white-space: nowrap;
        font-size: 90%; }
        #menu .container-fluid #menuList li {
          display: inline-block;
          padding: 0.5em 1em; }
          #menu .container-fluid #menuList li a {
            color: #fff; }
            #menu .container-fluid #menuList li a i {
              color: #b42c2e; } }
@media screen and (max-width: 767px) {
  #menu {
    background-color: rgba(0, 0, 0, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 60px;
    color: #fff;
    z-index: 200; }
    #menu .container-fluid {
      position: relative;
      height: 60px; }
      #menu .container-fluid .topLogo {
        display: block;
        position: absolute;
        width: 100%;
        height: 40px;
        text-align: center;
        top: 10px;
        left: 0;
        right: 0;
        position: absolute;
        margin: auto; }
        #menu .container-fluid .topLogo img {
          height: 40px; }
      #menu .container-fluid #menuList {
        display: none;
        position: fixed;
        top: 60px;
        left: 0vw;
        width: 100vw;
        background-color: #fff;
        min-height: calc(100vh - 60px);
        z-index: 900;
        list-style: none;
        padding: 0;
        margin: 0;
        white-space: nowrap;
        font-size: 90%; }
        #menu .container-fluid #menuList li {
          display: block;
          width: 100%;
          padding: 1em 1em;
          border-bottom: 1px solid #666;
          text-align: center; }
          #menu .container-fluid #menuList li a {
            font-size: 1.5em;
            color: #666; }
            #menu .container-fluid #menuList li a i {
              font-size: 2.0rem;
              color: #b42c2e;
              padding-right: 1rem; } }
/*---- Menu BTN----- */
.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box; }

.menu-trigger {
  position: absolute;
  right: 20px;
  top: 15px;
  width: 35px;
  height: 28px;
  z-index: 300; }
  .menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #fff;
    border-radius: 4px; }
  .menu-trigger span:nth-of-type(1) {
    top: 0; }
  .menu-trigger span:nth-of-type(2) {
    top: 12px; }
  .menu-trigger span:nth-of-type(3) {
    bottom: 0; }

.menu-trigger.active {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg); }
  .menu-trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(12px) rotate(-45deg);
    transform: translateY(12px) rotate(-45deg); }
  .menu-trigger.active span:nth-of-type(2) {
    -webkit-transform: translateY(0) rotate(45deg);
    transform: translateY(0) rotate(45deg); }
  .menu-trigger.active span:nth-of-type(3) {
    opacity: 0; }

@media screen and (min-width: 768px) {
  .menu-trigger {
    display: none; } }
#footer {
  background-color: #000;
  padding: 2em 0; }

/**********ブロックフェードイン設定**********/
.divfadein {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s; }

/**********文字アニメーション設定**********/
/*フェードイン*/
@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
/*右から左*/
@keyframes RightToLeft {
  0% {
    opacity: 0;
    /* 透明 */
    transform: translateX(100vw);
    /* X軸方向に50px */ }
  90% {
    opacity: 0;
    /* 透明 */
    transform: translateX(100vw);
    /* X軸方向に50px */ }
  100% {
    opacity: 1;
    /* 不透明 */
    transform: translateX(0);
    /* X軸方向に0px */ } }
/*上から下*/
@keyframes SlideDown {
  0% {
    opacity: 0;
    /* 透明 */
    transform: translateY(-50px);
    /* Y軸方向に-50px */ }
  100% {
    opacity: 1;
    /* 不透明 */
    transform: translateY(0);
    /* Y軸方向に0px */ } }
/*下から上*/
@keyframes SlideUp {
  0% {
    opacity: 0;
    /* 透明 */
    transform: translateY(50px);
    /* Y軸方向に50px */ }
  100% {
    opacity: 1;
    /* 不透明 */
    transform: translateY(0);
    /* Y軸方向に0px */ } }
/**********アニメーション設定end**********/
