@charset "UTF-8";
@import url(http://fonts.googleapis.com/css?family=Sawarabi+Mincho);
body {
  color: #080F09;
  font-family: "Sawarabi Mincho";
}

a {
  color: #080F09;
  text-decoration: none;
}

p {
  color: #080F09;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  height: 600px;
  margin: 0 auto;
  padding: 0;
}

.green {
  color: #007F07;
  font-size: 1.4rem;
}

#loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: black;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader {
  font-size: 10px;
  margin: 0 auto;
  text-indent: -9999em;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #f7f7f7;
  background: -moz-linear-gradient(left, #f7f7f7 10%, rgba(247, 247, 247, 0) 42%);
  background: -webkit-linear-gradient(left, #f7f7f7 10%, rgba(247, 247, 247, 0) 42%);
  background: -o-linear-gradient(left, #f7f7f7 10%, rgba(247, 247, 247, 0) 42%);
  background: -ms-linear-gradient(left, #f7f7f7 10%, rgba(247, 247, 247, 0) 42%);
  background: linear-gradient(to right, #f7f7f7 10%, rgba(247, 247, 247, 0) 42%);
  position: relative;
  -webkit-animation: load3 1.4s infinite linear;
  animation: load3 1.4s infinite linear;
  top: 50%;
  bottom: 0;
}

.loader:before {
  width: 50%;
  height: 50%;
  background: #f7f7f7;
  border-radius: 100% 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
}

.loader:after {
  background: #000000;
  width: 75%;
  height: 75%;
  border-radius: 50%;
  content: '';
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

@-webkit-keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  position: fixed;
  z-index: 1000;
  /*ボタンを最前面に*/
  top: 20px;
  right: 20px;
  cursor: pointer;
  width: 50px;
  height: 50px;
}

/*×に変化*/
.openbtn1 span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #666;
  width: 45%;
}

.openbtn1 span:nth-of-type(1) {
  top: 15px;
}

.openbtn1 span:nth-of-type(2) {
  top: 23px;
}

.openbtn1 span:nth-of-type(3) {
  top: 31px;
}

.openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  bottom: -120%;
  left: 0;
  width: 100%;
  height: 100vh;
  /*ナビの高さ*/
  background: white;
  opacity: .9;
  /*動き*/
  transition: all 0.6s;
}

#g-nav.panelactive {
  bottom: 0;
}

#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#g-nav li {
  list-style: none;
  text-align: center;
}

#g-nav li a {
  color: #333;
  text-decoration: none;
  padding: 10px;
  display: block;
  letter-spacing: 0.1em;
  font-size: .9rem;
}

.topview > .container {
  display: flex;
  justify-content: center;
  width: 100%;
  height: auto;
  margin: 0;
}

.topimg {
  position: relative;
  width: 100%;
  min-height: 100vh;
}

.logotype {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.logotype img {
  height: 6rem;
}

.start {
  background: black;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9000;
}

.start p {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 9999;
  width: 100px;
}

.topview > .container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 900px;
}

.hel > .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 900px;
}

.hel h2 {
  width: 80%;
  margin: 4rem 0 2rem 0;
  font-weight: 200;
  font-size: 1.1rem;
}
.hel p {
  width: 80%;
  margin: 0 auto;
  font-size: .9rem;
}
.hel img {
  width: min(300px, 100%);
  margin: 0 auto;
}
.hel span {
  width: 100%;
  text-align: right;
}
.hel a {
  color: white;
}

.sel > .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 900px;
}

.sel h2 {
  width: 80%;
  margin: 4rem 0 2rem 0;
  font-weight: 200;
  font-size: 1.1rem;
}
.sel p {
  width: 80%;
  margin: 0 auto;
  font-size: .9rem;
}
.sel img {
  width: min(300px, 100%);
  margin: 0 auto;
}
.sel span {
  width: 100%;
  text-align: right;
}
.sel a {
  color: white;
}

.bol {
  font-weight: 200;
  font-size: 1.1rem;
  color: inherit;
}

.contentimg > .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 900px;
}

.contentimg p {
  width: 80%;
  position: absolute;
  font-size: 1rem;
  font-weight: 200;
}
.contentimg img {
  width: min(300px, 100%);
  margin: 0 auto;
}
.contentimg span {
  width: 80%;
  text-align: right;
}

.content_a > .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 480px;
}

.content_b > .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 480px;
}

.content_c > .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 480px;
}

.content_c p {
  position: absolute;
  font-size: 1rem;
  font-weight: 200;
}
.content_c img {
  width: min(200px, 100%);
  margin: 0 auto;
  display: block;
}
.content_c span {
  width: 80%;
  text-align: right;
}

.contentp > .container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 900px;
}

.contentp p {
  font-size: 1rem;
  font-weight: 200;
}

.cp_center {
  text-align: center;
  display: flex;
  justify-content: center;
}

.video_wrapper {
  position: relative;
  height: 100vh;
  width: 100%;
}

.video_wrapper > video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.contente > .container {
  display: flex;
  flex-direction: column;
  width: 80%;
  margin: 0 auto;
  justify-content: center;
  height: 900px;
}

.contente p {
  font-size: 1rem;
  font-weight: 200;
}

.content__wrap {
  width: 100%;
  height: 100vh;
}

.content__wrap p {
  position: relative;
  z-index: 2;
}

.content-wrap--bg p {
  color: #fff;
}

.content-wrap--bg h2 {
  color: #fff;
  z-index: 2;
}

.content-wrap--bg::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: black;
  opacity: 0;
  transition: all 0.4s ease 0s;
  z-index: 0;
}

.content-wrap--bg.show::before {
  opacity: 1;
}

.content-wrap--bg000::before {
  width: 100%;
  min-height: 100vh;
  background: url(../img/samp06.jpg) center/cover;
}

.content-wrap--bg001::before {
  width: 100%;
  min-height: 100vh;
  background: url(../img/samp14.jpg) center/cover;
}

.content-wrap--bg002::before {
  width: 100%;
  min-height: 100vh;
  background: url(../img/samp18.jpg) center/cover;
}

.content-wrap--bg003::before {
  background: black;
}

.content-wrap--bg004::before {
  background: black;
}

.content-wrap--bg005::before {
  width: 100%;
  min-height: 100vh;
  background: url(../img/samp40.jpg) center/cover;
}

.content-wrap--bg006::before {
  width: 100%;
  min-height: 100vh;
  background: url(../img/samp21.jpg) center/cover;
}

.content-wrap--bg007::before {
  background: #231815;
}

.content-wrap--bg008::before {
  width: 100%;
  min-height: 100vh;
  background: url(../img/samp38.jpg) center/cover;
}

.content-wrap--bg009::before {
  width: 100%;
  min-height: 100vh;
  background: url(../img/samp35.jpg) center/cover;
}

.content-wrap--bg010::before {
  width: 100%;
  min-height: 100vh;
  background: url(../img/samp36.jpg) center/cover;
}

.fake {
  width: 100%;
  height: 100vh;
  background: url(../img/samp06.jpg) center/cover;
}

.fake::before {
  width: 100%;
  height: 100vh;
  background: url(../img/samp06.jpg) center/cover;
}

.fake.show::before {
  opacity: 1;
}

.fake::before {
  opacity: 1;
}

.make {
  width: 100%;
  height: 100vh;
  background: url(../img/samp21.jpg) center/cover;
}

.make::before {
  width: 100%;
  height: 100vh;
  background: url(../img/samp21.jpg) center/cover;
}

.make.show::before {
  opacity: 1;
}

.make::before {
  opacity: 1;
}

.erimg {
  position: relative;
  width: 100%;
  min-height: 100vh;
}

.erimg > .container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 900px;
}

.fimg {
  position: relative;
  width: 100%;
  min-height: 100vh;
}

.fimg > .container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 900px;
}

.ffe > .container {
  display: flex;
  flex-direction: column;
  width: 80%;
  margin: 0 auto;
  justify-content: center;
  height: 600px;
}

.ffe p {
  font-size: 1rem;
  font-weight: 200;
  color: #080808;
  text-align: center;
}

.ffe a {
  display: block;
  font-size: 1rem;
  font-weight: 200;
  color: #080808;
  text-align: center;
}

footer > .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.atag {
  position: relative;
}

.add {
  font-size: .8rem;
  width: 80vw;
  border-top: groove;
  padding-top: 2rem;
}

.form img {
  margin: 1rem;
}

.copyright {
  position: relative;
  bottom: -5rem;
}

.copyright p {
  font-size: .5rem;
}

#page-top {
  position: fixed;
  z-index: 2;
  opacity: 0;
  transform: translateX(100px);
  right: 5px;
  bottom: 20px;
  height: 50px;
  text-decoration: none;
  transform: rotate(180deg);
  font-size: 80%;
  line-height: 1.5rem;
  color: #f1f1f1;
  padding: 0 0 0 25px;
  border-top: solid 1px;
}

#page-top a {
  color: #f1f1f1;
}

#page-top::before {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: 0px;
  border-top: solid 1px;
  transform-origin: left top;
}

#page-top.LeftMove {
  animation: LeftAnime 0.5s forwards;
}

@keyframes LeftAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
#page-top.RightMove {
  animation: RightAnime 0.5s forwards;
}

@keyframes RightAnime {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 1;
    transform: translateX(100px);
  }
}
@media screen and (max-width: 959px) {
  .topview > .container {
    height: 650px;
  }

  .hel > .container {
    width: 90vw;
    height: 900px;
  }

  .sel > .container {
    width: 90vw;
    height: 900px;
  }

  .bol {
    font-weight: 200;
    font-size: 1rem;
    color: inherit;
  }

  .contentimg > .container {
    height: 650px;
  }

  .erimg {
    height: 650px;
  }

  .contentimg p {
    font-size: .8rem;
  }

  .content-wrap--bg001::before {
    width: 100%;
    min-height: 100vh;
    background: url(../img/samp14.jpg) center/cover;
  }

  .contentp p {
    font-size: .8rem;
  }

  .contente p {
    font-size: .8rem;
  }

  .hel h2 {
    font-size: .9rem;
  }
  .hel p {
    font-size: .8rem;
  }

  .sel h2 {
    font-size: .9rem;
  }
  .sel p {
    font-size: .8rem;
  }

  .ffe p {
    font-size: .8rem;
  }
}

/*# sourceMappingURL=content.css.map */
