@charset "utf-8";

/*ホーム画面*/
.home-page{
  height: auto;
  background-color: white;
}
.brains-detail{
  margin-right: 10%;
  margin-left: 10%;
  padding-bottom: 10%;
  display:flex;
  font-size: 20px;
}
.brains-detail-article{
  margin-top: 10%;
}
.brains-detail-article h1{
  font-size: 40px;
  color: teal;
}
.brains-detail-img{
  margin-top: 10%;
  width: 100%;
}
.top-img img{
  width: 100%;
}

/*トップページ画面*/
.home-brains-logo{
    width: 180px;
}
.footer{
    height: 100px;
    background-color: teal;
    color: white;
}
.footer-content{
    padding: 2%;
    display: flex;
    justify-content: center;
}
.conatct-link{
    padding-right: 1%;
    border-right:1.5px solid limegreen;
}
.copyright{
    margin-left: 1%;
}
.brains-logo img{
    margin-top: 10%;
}
.guest-form{
    margin-bottom: 5%;
}



/*========= LoadingのためのCSS ===============*/

/* Loading背景画面設定　*/
#splash {
    /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background:white;
  text-align:center;
  color:#fff;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width:260px;
}

/* fadeUpをするアイコンの動き */

.fadeUp{
animation-name: fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/* Loadingバー中央配置　*/
#splash_text {
  position: absolute;
  top: 150%;
  left: 50%;
    z-index: 999;
  width: 100%;
  transform: translate(-50%, -50%);
  color: #fff;
}

/*IE11対策用バーの線の高さ※対応しなければ削除してください*/
#splash_text svg{
    height: 2px;
}
@media only screen and (max-width: 767px){
    /*ホーム画面*/
    .home-page{
      height: auto;
      background-color: white;
    }
    .brains-detail{
      margin-right: 10%;
      margin-left: 10%;
      padding-bottom: 10%;
      display: inline;
      font-size: 20px;
    }
    .brains-detail-article{
      margin-top: 10%;
    }
    .brains-detail-article h1{
      font-size: 30px;
      color: teal;
    }
    .brains-detail-img{
      margin-top: 10%;
      width: 100%;
    }

}