/* 基本デザイン */
p,td,th {
  font-size:1.2em;
}

#Body {
  background-color: #ded;
}
#HeaderTop {
  background-color: rgba(0,102,204,0.8);
  border-bottom: solid 3px rgba(51,102,153,0.9);
}
#HeaderTop a {
  color:#f0f0f0; 
}
#HeaderTop button {
  color:#f0f0f0; 
  border-color:#f0f0f0; 
}
#BrandLogo {
  margin: 10px 0;
}
.navbar-brand {
  background: url("../img/siteLogo.png") no-repeat left center;
  background-size: contain;
  width:290px;
  height:65px;
  margin:5px;
}
.dropdown-menu {
  background-color: #555;
}
.dropdown-menu a:hover {
  background-color: #777;
}
#BackgoundVideo {
  position: fixed;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  background: url(../img/bgv.jpg) no-repeat;
  background-size: cover;
  z-index:-999;
}
#BackgoundVideo video {
  position: absolute;
  top: 50%;  left: 50%;
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index:-999;
}
#BackgoundMosaic {
  position: fixed;
  width: 100%;
  height: 100%;
  background: url(../img/mosaic50.png) repeat;
  z-index:-888;
}

#HeaderArea {
  margin-top:90px;
  margin-bottom:0px;
  background-color: rgba(0,0,0,0.25);
}
#HeaderArea2 {
  margin-top:90px;
  height:0; 
}
#HeaderMain {
  width: 100%; height: 100%;
  background-size: cover;
}
#HeaderMainPoster {
  width: 100%; height: 100%;
}
a.nav-link:hover {
  color:#ff0;
}
#HeaderMain .HeadCopy {
  width: 100%;
  font-size:3em;
  color: #eee;
  text-shadow:0 0 5px #000;
}
#Body .ContentBase {
  background-color: rgba(255,255,255,0.8);
  padding:15px 10px;
  margin-top:0px;
  margin-bottom:0px;
}
#Body .ContentWarning {
  background-color: rgba(200,50,50,0.8);
  padding:15px 10px;
  margin-top:0px;
  margin-bottom:0px;
  color:#fff;
}
.imgWrap {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.imgWrap img {
  display: block;
  transition-duration: 0.3s;
}
.imgWrap img:hover {
  transform: scale(1.1);
  transition-duration: 0.3s;
}
.mb-10 {
  margin-bottom:10px;
}
.bgHead {
  margin-bottom:10px;
  min-height: 150px;
}
.bgHead p {
  font-size:1.5em;
}

.BaseGradient {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#eee)); /* Safari,Chrome */
  background: -moz-linear-gradient(top, #fff, #eee); /* Firefox */
  background: -o-linear-gradient(#fff, #eee);
  background: -ms-linear-gradient(#fff, #eee);
  background: linear-gradient(#fff, #eee);
}
.table td {
  background-color:rgba(255,255,255,0.7);
}
.table th {
  background-color:rgba(216,216,216,0.7);
text-align: center;
}
.btn {
  white-space: normal;
}
#Footer {
  padding:15px 5px;
  background-color: rgba(0,102,204,0.8);
  color: #fff;
}
#Footer a {
  color: #fff;
}
.bg-hbar {
  background-color: #336699;
}


/* 上に戻るボタン */
.ui-to-top.active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.ui-to-top {
  display: none;
  width: 50px;
  height: 50px;
  font-size: 24px;
  line-height: 46px;
  color: #FFF;
  background: #006699;
  border-radius: 50%;
  position: fixed;
  right: 15px;
  bottom: 15px;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  z-index: 20;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
  transition: .3s all ease;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
}
.ui-to-top:visited,
.ui-to-top:hover,
.ui-to-top:focus,
.ui-to-top:active {
  text-decoration: none;
  color: #FFF;
}

/************************************/
/***** レスポンシブ設定 *************/
/************************************/

/* PC用 w992px未満 */
@media screen and (max-width: 991px){
  .nav li a {
    font-size:1.1em;
    padding:10px 4px;
  }
  #HeaderMain .HeadCopy {
    font-size:2em;
  }
  #HeaderService .HeadCopy {
    font-size:1.5em;
  }
  #HeaderSupport .HeadCopy {
    font-size:1.5em;
  }
}

/* SP用 w451px未満 */
@media screen and (max-width: 450px){
  #HeaderArea {
    margin-top:85px;
  }
  #HeaderArea2 {
    margin-top:85px;
  }
  .navbar-brand {
    background: url("../img/siteLogo.png") no-repeat left center;
    background-size: contain;
    width:220px;
    height:60px;
    margin:5px;
  }
  .menuHide {
    display:none;
  }
}

/************************************/
/***** フェードイン設定 *************/
/************************************/
/* 上からフェードイン */
.slide-top {
  opacity: 0;
  transform: translate(0, -20px);
  transition: all 1s ease-out;
}
/* 下からフェードイン */
.slide-bottom {
  opacity: 0;
  transform: translate(0, 20px);
  transition: all 1s ease-out;
}
/* 左からフェードイン */
.slide-left {
  opacity: 0;
  transform: translate(-20px, 0);
  transition: all 1s ease-out;
 }
/* 右からフェードイン */
.slide-right {
  opacity: 0;
  transform: translate(20px, 0);
  transition: all 1s ease-out;
}
.delay1s {
  transition-delay:1s;
}