@charset "utf-8";


/* TOPページの見出しスタイル */

.h-style {
  font-size: 36px;
  margin: 40px 0 20px;
  padding-bottom: 2px;
  border-bottom: 2px #44d0ff solid;
}
.h-style span {
  margin-left:10px;
  font-size:50%;
  position: relative;
  top:0%;
}
.h-blue {
  color: #fff;
}
.h-white {
  color: #333;
}





/*
 * トップ・メッセージ
 */
 .top-message {
  margin-top: 50px;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .top-message {
    margin-left: 5px !important;
    margin-right: 5px !important;
  }
}


.top-message .catchphrase {
  border-left: solid 8px #2860ac;
  padding-left: 20px;
  font-size: 2.0em;
  font-weight: bold;
  line-height: 1.2em;
}
.top-message .catchphrase .upper {
  margin-bottom: 0;
}
.top-message .catchphrase .lower {
  color: #FC6D06;
  margin-bottom: 0;
}
.top-message .description {
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.2em;
}






/*
* トップ・動画表示
*/
.top-movie {
  position: relative;
  width:100%;
  height: 500px;
  overflow: hidden;
  opacity: 0.01;
  animation: load 1.5s 0.8s ease-out forwards;
  border-radius:15px;

  margin-bottom: 3em;
}
.top-movie #video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1000;
  overflow: hidden;
  transform: translate(-50%, -50%) scale(1.05);
  filter: grayscale(20%) contrast(85%);/*背景動画にかけるフィルタ*/
  transition: 0.3s;
}

@keyframes load {
100% {
  opacity: 1;
}
}
.table-center {
  display: table;
  width: 100%;
  position: relative;
  height: 100%;
}
.table-center > div {
  display: table-cell;
  vertical-align: bottom;
  position: relative;
  text-align: left;
  bottom: 10px;
  left: 10px;
}
.table-center > div p {
  color: #fff;
  text-shadow: 0 0px 5px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 10px;
  font-size: 1.2em;
  font-weight: 600;
}



/*
 * トップ・ABOUT
 */
#top-about {
  margin-bottom: 50px;
  padding-bottom: 30px;
  background-color: #2860ac;
}

#top-about .about-text p {
  position: absolute;
  color: #fff;
  font-size: 1.2em;
  font-size: 1.8rem;
  top:50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background: #000;
  padding: 1rem;
  z-index: 10;
}
#top-about .photo-group  {
  display: inline-block;
  position: relative;/*相対配置*/
  text-align: center;

  padding: 0;
}
#top-about .photo-group p {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  margin:0;
  padding:0;

  text-align: center;
  font-size: 22px;
  color: #fff;
}


/*
* トップ・RECRUIT
*/
#top-recruit {
  margin-bottom: 50px;
  padding-bottom: 30px;

  background-color: #fff;
}

#top-recruit .recruit-text p {
  position: absolute;
  color: #fff;
  font-size: 1.2em;
  font-size: 1.8rem;
  top:50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background: #000;
  padding: 1rem;
  z-index: 10;
}
#top-recruit .photo-group  {
  display: inline-block;
  position: relative;/*相対配置*/
  text-align: center;

  padding: 0;
}
#top-recruit .photo-group p {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  margin:0;
  padding:0;

  text-align: center;
  font-size: 22px;
  color: #fff;
}







/* 写真を暗くする（黒背景にして透過させる） */
div.bg_dark {
  background-color: #000000;
  display: inline-block;
  position: relative;/*相対配置*/

  padding: 0;
}
.bg_dark img{
  /* width: 300px; */
  display: block;
  opacity: 0.75;
}
.bg_dark p {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  margin:0;
  padding:0;
  text-align: center;
  font-size: 22px;
  color: #fff;
}



