@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: 100%;
  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: gray;
  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: 900px;
}

.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: white;
  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;
}

.index > .container {
  height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
}

.tate_menu li {
  margin: 0 3rem;
  z-index: 1;
}

.tate_menu li {
  position: relative;
  /* 指定した分だけ相対的に移動 */
  z-index: 1;
}

.tate_menu li:hover .kaede {
  display: inline;
  /* インライン要素として表示 */
  z-index: 1;
}

.kaede {
  position: absolute;
  /* 親要素を基準 */
  display: none;
  /* 要素を非表示 */
  width: 20px;
  /* 吹き出し全体の幅 */
  bottom: 100%;
  /* 表示位置 */
  margin-bottom: 1rem;
  /* 表示位置 */
  z-index: 1;
}

.kaede:after {
  content: "";
  position: absolute;
  z-index: 1;
}

.hel > .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 70vw;
  height: auto;
  margin-bottom: 4rem;
}

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

.hel h1 {
  margin-top: 3rem;
  font-size: 1.3rem;
}

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

.h_border {
  display: flex;
  width: 100%;
  margin: auto;
  border: 1px solid;
  color: inherit;
  margin-bottom: 2rem;
}

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

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

.name {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 6rem;
}

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

.about img {
  width: 16rem;
}

.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;
  opacity: 0;
  transition: all 0.4s ease 0s;
  z-index: 0;
}

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

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

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

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

.fake::before {
  opacity: 1;
}

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

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

.helloimg img {
  z-index: 1;
}

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: #080F09;
  padding: 0 0 0 25px;
  border-top: solid 1px;
}

#page-top a {
  color: #080F09;
}

#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;
  }

  .index > .container {
    height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-orientation: upright;
  }

  .tate_menu li {
    margin: 0 2rem;
  }

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

  .hel h1 {
    font-size: 1.1rem;
  }

  .helloimg img {
    width: 4rem;
  }
}

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