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

h3 {
  border-bottom:2px solid #228822;
}
dt, dd {
  margin-bottom:10px;
}
#Body {
  background-color: #ded;
}
#HeaderTop {
  background-color: rgba(48,84,48,0.8);
}
#HeaderTop a {
  color:#f0f0f0; 
}
#HeaderTop button {
  color:#f0f0f0; 
  border-color:#f0f0f0; 
}
#BrandLogo {
  margin: 10px 0;
}
.xBoxDark {
  border:1px solid #999;
  background-color: #eee;
  font-weight: normal;
  padding:3px;
}
.navbar-brand {
  background: url("../img/siteLogo.png") no-repeat left center;
  background-size: contain;
  width:290px;
  height:80px;
  margin:5px;
}
.dropdown-menu {
  background-color: #555;
}
.dropdown-menu a:hover {
  background-color: #777;
}
#HeaderArea {
  margin-top:105px;
  margin-bottom:0px;
  background-color: rgba(64,64,64,0.6);
  height:60%; 
}
#HeaderMain {
  width: 100%; height: 100%;
  min-height: 400px;
  background: url(../img/headMain.png) no-repeat top center;
  background-size: cover;
}
#HeaderMain .HeadCopy {
  width: 100%;
  font-size:3em;
  color: #eee;
}
#HeaderService {
  width: 100%; height: 100%;
  min-height: 350px;
  background: url(../img/headService.png) no-repeat top center;
  background-size: cover;
}
#HeaderService .HeadCopy {
  width: 100%;
  font-size:2em;
  color: #333;
  text-shadow:0 0 5px #fff;
}
#HeaderSupport {
  width: 100%; height: 100%;
  min-height: 350px;
  background: url(../img/headSupport.png) no-repeat top center;
  background-size: cover;
}
#HeaderSupport .HeadCopy {
  width: 100%;
  font-size:2em;
  color: #333;
  text-shadow:0 0 5px #fff;
}

#Body .ContentBase {
  background-color: rgba(255,255,255,0.8);
  padding-top:15px;
}
.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 {
  background: url(../img/bgStartup.png) no-repeat center center;
  margin-bottom:10px;
  min-height: 250px;
}
.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);
}
.btn {
  white-space: normal;
}
#Footer {
  padding:15px 5px;
  background-color: rgba(48,84,48,0.8);
  color: #fff;
}
#Footer a {
  color: #fff;
}

/* 上に戻るボタン */
.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: #339933;
  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;
}