/* メニュー */
#topMenuContainer {
  background: transparent;
}
#menuBarContainer > span {
  background: #fff;
}
.topMenu li a {
  color: #fff;
}

.topMenu li a.black {
  color: #000;
}
#menuBarContainer.black > span {
  background: #000;
}



/* FV */
#fvContainer {
  width: 100%;
  height: 100vh;
  position: relative;
}

#fvContainer video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#fvContainer > img {
  width: 488px;
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
}

.op {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  transition: 1s 1s;
}
.op.start {
  left: 100%;
}

.op > img {
  width: 190px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 1s 1s;
}

.op.start > img {
  filter: blur(30px) sepia(30%);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%) scale(1.3, 0.8);
}





/* アバウト */
#aboutContainer {
  width: 90%;
  max-width: 960px;
  margin: 70px auto 0;
}

.about p:first-of-type {
  font-size: 42px;
  letter-spacing: 0.1em;
}

h1 {
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
}

.about p:last-of-type {
  font-size: 14px;
  margin-top: 20px;
}



/* ワークス */
#worksContainer {
  width: 90%;
  max-width: 960px;
  margin: 70px auto 0;
  text-align: center;
}

#player {
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  transition: 0.6s;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
}
#player.playStart {
  opacity: 1;
  visibility: visible;
}

#player video {
  width: 100%;
  max-width: 1920px;
  max-height: 100vh;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.6s;
  opacity: 0;
  visibility: hidden;
}
#player.playStart video {
  opacity: 1;
  visibility: visible;
}

h2 {
  font-size: 30px;
}

.worksContents {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}

.works {
  flex: 0 1 31.5%;
}

.works img {
  width: 100%;
  vertical-align: bottom;
}

.more {
  width: 180px;
  height: 40px;
  margin: 50px auto 0;
  background: #000;
  color: #fff;
  line-height: 40px;
  text-align: center;
}

.more > a {
  color: #fff;
  display: block;
}





/* ニュース */
#newsContainer {
  width: 90%;
  max-width: 960px;
  margin: 150px auto 0;
  display: flex;
}

.newsTitle {
  flex: 0 1 150px;
  margin-right: 50px;
}

.newsContents {
  flex: 1 1 auto;
}

.news {
  border-top: 1px solid #DCDCDC;
  padding: 30px 0;
}

.news:last-of-type {
  border-bottom: 1px solid #DCDCDC;
}




/* コンタクト */
#contactContainer {
  width: 90%;
  max-width: 960px;
  margin: 140px auto 170px;
}

.contactTitle p {
  margin-top: 20px;
}

#contactContainer .more {
  margin: 40px 0 0px;
}