/*============================================================


  top.css


============================================================*/
/*  common
=====================*/
.title-index {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  padding-top: 3.2rem;
  padding-bottom: 6.4rem;
  position: relative;
}

@media (max-width: 480px) and (orientation: portrait) {
  .title-index {
    font-size: 1.2rem;
    padding-top: 1rem;
    padding-bottom: 3.2rem;
  }
}




/*  hero
=====================*/
#content-hero-top {
  display: block;
  width: 100%;
  height: 64rem;
  background: url(/recruit/assets/images/top/ph_hero_h.jpg) center center no-repeat;
  background-size: cover;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

#content-hero-top > .block-letter {
  display: table;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

#content-hero-top .title-message {
  display: table-cell;
  width: 100%;
  height: 100%;
  text-align: left;
  vertical-align: middle;
  padding: 0 10rem 4rem;
}

#content-hero-top .title-message > strong {
  font-size: 6.4rem;
  font-weight: 100;
  letter-spacing: 0.24em;
  line-height: 1.6;
}

#content-hero-top .title-message > em {
  display: inline-block;
  font-size: 6.4rem;
  font-weight: 100;
  letter-spacing: 0.1em;
  line-height: 1.4;
  margin-top: 0.8rem;
}

#content-hero-top .block-image .video {
  width: 102%;
  height: 100%;
  opacity: 0;
  position: absolute;
  left: -1%;
  top: 0;
  -webkit-transition: opacity 0.4s;
     -moz-transition: opacity 0.4s;
      -ms-transition: opacity 0.4s;
       -o-transition: opacity 0.4s;
          transition: opacity 0.4s;
}

#content-hero-top .block-image .video.active {
  opacity: 1;
}

#content-hero-top .block-image .video.active::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #88888d;
  opacity: 0.4;
  position: absolute;
  left: 0;
  top: 0;
}

#content-hero-top .block-image video {
  display: block;
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (max-width: 480px) and (orientation: portrait) {
  #content-hero-top {
    height: 32rem;
    background-image: url(/recruit/assets/images/top/ph_hero_v.jpg);
  }

  #content-hero-top .title-message {
    padding: 0 2.4rem 2.4rem;
  }

  #content-hero-top .title-message > strong {
    font-size: 3.2rem;
    letter-spacing: 0.16em;
    line-height: 1.5;
  }

  #content-hero-top .title-message > em {
    font-size: 3.2rem;
    margin-top: 0.6rem;
  }

  #content-hero-top .block-image video {
    width: auto;
    height: 100%;
    left: 50%;
    right: auto;
    top: 0;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
         -o-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}



/*  index
=====================*/
#content-index {
  text-align: center;
  position: relative;
  z-index: 1;
}



