* {
  padding: 0;
  margin: 0;
  font-family:'Meiryo UI' ;
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-weight: 400;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}

html body {
  width:100%;
  height: 100%;
  background-color:#000000;
  min-height: 100%;
  text-align: center;
  position:fixed;
  overflow: hidden;
}

/* ------背景の動画------ */

.homeMv {
  width: 100%;
  height: 100%;
  position: relative;
}

.homeMv__movie {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
}


.homeMv__movie video {
  min-width: 100%;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  opacity: .18;
}

/* ------詳細内容部分css------ */

.flexContainer{
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: scroll;
}
.all__contents{
  display: block;
}

.visual__cover{
  position: relative;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
  display: block;
}

.visual__cover a{
  display: block;
  height: auto;
}


/* ------TOPのロゴ------ */
.visual__cover img{
  max-width: 25%;
  opacity: 1;
  margin: 0 auto;
  object-fit: contain;
}

/* ------文字の部分全体------ */

.about__contents{
  width: 100%;
  margin-top: 10vw;
  color: #FFFFFF;
  padding-bottom: 3%;
  text-align: center;
  display: block;
}

.about__info{
  display: block;
  text-align: center;
  padding: 4vh 0;
  margin: 0 auto;
  position: relative;

}


/* ------Visionの文字------ */

.about__info dt{
  float: left;
  text-align: center;
  font-size: .85em;
  padding-right: 50px;
  padding-top: 10px;
  padding-left: 10px;
  clear:left;
  font-style: normal;
}

.about__contents h2{
  font-family: 'Megrim', cursive;
  font-size: 80px;
  font-weight: bold;
  text-align: center;
  position: relative;
  display: block;
  font-weight: lighter;
  line-height: 80px;
}

.about__info li{
  list-style-type: none;
  font-family: 'Megrim', cursive;
  font-style: normal;
  font-size: 1.2em;
  color: #ffffff;
  padding-bottom: .5em;
  line-height: 1.2em;
}

/* about-hideのcss */
.about__contents-hide{
  width: 100%;
  margin-top: 8vw;
  color: #FFFFFF;
  padding-bottom: 3%;
  text-align: center;
  display: block;
}
.about__contents-hide h2{
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 65px;
  padding: 2vw 0;
  font-weight: bold;
  text-align: center;
  position: relative;
  display: block;
  font-weight: lighter;
  line-height: 80px;
}
.about__info-hide li{
  list-style-type: none;
  font-family: 'Noto Sans JP', sans-serif;
  font-style: normal;
  font-size: 1.2em;
  color: #ffffff;
  padding-bottom: .5em;
  line-height: 1.2em;
}

/* ------メニューバー------ */

.menus__vision{
  text-decoration: none;
  display: block;
  position: fixed;
  padding-left: 40px;
  left: 0;
  top: 90%;
  margin-top: -9px;
  font-size: 20px;
  color: #ffffff;
  letter-spacing: .1em;
  transition-property: transform;
  transition-duration: .6s;
  transition-delay: .2s;
  z-index: 20;
  font-family: 'Megrim', cursive;
}

.menus__vision:hover{
  transform: translate(55px,0);
}

.top__visionLine {


  content: "";
  width: 100%;
  height: 2px;
  position: fixed;
  right: 100%;
  top: 90%;
  margin-top: 8px;
  display: inline-block;
  background-color: #ffffff;
  transform: translateX(0);
  margin-right: 10px;
}

.menus__vision:hover + .top__visionLine{
  transition: translateX(90px);
  -webkit-transform: translateX(90px);
    -moz-transform: translateX(90px);
    -ms-transform: translateX(90px);
    -o-transform: translateX(90px);
    transition-property: transform;
    transition-duration: .6s;
    transition-delay: .3s;
    opacity: 1;
    background-color: #ffffff;
    pointer-events: none;
}


.menus__links{
  /* top: 50%;
  right: 15px;
  bottom: 0px;
  text-align: right;
  position: absolute;
  color:#fff;
  text-decoration: none;
  font-size: 20px; */
    display: block;
    position: fixed;
    padding-right: 40px;
    right: 0;
    top: 90%;
    margin-top: -9px;
    font-size: 20px;
    text-decoration: none;
    color:#ffffff;
    letter-spacing: .1em;
    transition-property: transform;
    transition-duration: .6s;
    transition-delay: .2s;
    z-index: 20;
    font-family: 'Megrim', cursive;
}

.menus__links:hover{
  transform: translate(-55px,0);
}

.top__linksLine {
  content: "";
  width: 100%;
  height: 2px;
  position: fixed;
  left: 100%;
  top: 90%;
  margin-top: 8px;
  display: inline-block;
  background-color: #ffffff;
  transform: translateX(0);
  margin-left: 10px;
}

.menus__links:hover + .top__linksLine{
  transition: translateX(-90px);
  -webkit-transform: translateX(-90px);
  -moz-transform: translateX(-90px);
  -ms-transform: translateX(-90px);
  -o-transform: translateX(-90px);
  transition-property: transform;
  transition-duration: .6s;
  transition-delay: .3s;
  opacity: 1;
  background-color:#ffffff;
  pointer-events: none;
}


footer{
  display: none;
  position: absolute;
  left:0;
  right: 0;
  bottom: 0;
  padding: 20px 0;
  background-position: bottom;
  padding:1px;
}

footer .container{
  padding: 0 30px;
  /* background: #000000; */
}

footer .container img {
  max-width: 7%;
  display: block;
  margin: 0 auto;
}

footer .container p{
  font-weight: 100;
  font-size: 3px;
  clear:right;
  color: #ffffff;
  text-align: center;
  padding-bottom: 5px;
  font-family: 'Megrim', cursive;
}



/* =========================================== */

#nav-drawer {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  padding: 12px 12px 0 12px;
  z-index: 100;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
  display:none;
}

/*アイコンのスペース*/
#nav-open {
  display: inline-block;
  width: 30px;
  height: 22px;
  vertical-align: middle;
}

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 3px;/*線の太さ*/
  width: 25px;/*長さ*/
  border-radius: 3px;
  background: #555;
  display: block;
  content: '';
  cursor: pointer;
}
#nav-open span:before {
  bottom: -8px;
}
#nav-open span:after {
  bottom: -16px;
}

/*閉じる用の薄黒カバー*/
#nav-close {
  display: none;/*はじめは隠しておく*/
  position: fixed;
  z-index: 99;
  top: 0;/*全体に広がるように*/
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: .3s ease-in-out;
  background-color: rgb(40,40,40);
}

/*中身*/
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  opacity: .9;
  z-index: 9999;/*最前面に*/
  width: 20%;/*右側に隙間を作る（閉じるカバーを表示）*/
  max-width: 330px;/*最大幅（調整してください）*/
  height: 100%;
  background: rgb(40,40,40);/*背景色*/
  transition: .3s ease-in-out;/*滑らかに表示*/
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);/*左に隠しておく*/
}

#nav-content .nav__about{
  margin-top: 30vh;
}

#nav-drawer a{
  font-weight: inherit;
  padding-left: 20px;
  padding-bottom:15px;
  font-size: 2em;
  float: left;
  clear: left;
  text-decoration: none;
  color: #ffffff;
  font-family: 'Megrim', cursive;
}

/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
  display: block;/*カバーを表示*/
  opacity: .5;
}

#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);/*中身を表示（右へスライド）*/
  box-shadow: 6px 0 25px rgba(0,0,0,.15);



}


/* ========================================== */
