@charset "UTF-8";
/* ==================================================
top.css
================================================== */
/* Common
--------------------------------------------------*/
.section {
  padding-top: 50px; }

/* Hero
--------------------------------------------------*/
#hero {
  position: relative;
  /* background-image: url(../images/home/bg-hero.jpg);*/
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  height: 80vh;
  min-height: 475px; }
  #hero #hero-box {
    position: relative;
    display: -ms-flexbox;
    /* for IE10 */
    -ms-flex-pack: center;
    /* for IE10 */
    -ms-flex-align: center;
    /* for IE10 */
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1000px; }
    #hero #hero-box #hero-inner {
      margin: 50px 0;
      position: relative;
      width: 70%;
      height: 40%; }
      #hero #hero-box #hero-inner h1, #hero #hero-box #hero-inner p {
        position: relative;
        display: block;
        margin: 0;
        z-index: 10; }
        #hero #hero-box #hero-inner h1 img, #hero #hero-box #hero-inner p img {
          position: relative; }
      #hero #hero-box #hero-inner h1 {
        margin-top: 5%; }
      #hero #hero-box #hero-inner p {
        margin-top: 12%; }
      #hero #hero-box #hero-inner #infinity {
        position: absolute;
        width: 100%;
        height: 230px;
        top: 0;
        left: 0;
        z-index: 0;
        background-position: 0 0%;
        background-repeat: no-repeat;
        background-size: 100% 1300%; }
        #hero #hero-box #hero-inner #infinity img {
          display: none; }
      #hero #hero-box #hero-inner .infinity-animation {
        background-image: url(../images/home/infinity-sprite.png);
        animation: sprite 0.8s steps(12) forwards; }
    #hero #hero-box .scroll-down {
      display: none;
      position: absolute;
      width: 50px;
      height: 50px;
      bottom: 50px;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      opacity: 0.5; }
      #hero #hero-box .scroll-down img {
        width: 50px;
        height: 50px;
        position: relative; }
    #hero #hero-box .scroll-down-animation img {
      display: block;
      -webkit-animation: animation 3.8s linear infinite both;
      animation: animation 3.8s linear infinite both;
      background-color: transparent;
      -webkit-animation-delay: 0.5s;
      animation-delay: 0.5s; }
    #hero #hero-box .zoomdown-animation img {
      display: block;
      -webkit-animation: zoomdown 0.2s linear 1 both;
      animation: zoomdown 0.2s linear 1 both;
      background-color: transparent;
      -webkit-animation-delay: 0.5s;
      animation-delay: 0.5s; }

@-webkit-keyframes zoomdown {
  0% {
    opacity: 0;
    -webkit-transform: scale(3, 3);
    transform: scale(3, 3); }
  100% {
    opacity: 0.5;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1); } }
@keyframes zoomdown {
  0% {
    opacity: 0;
    -webkit-transform: scale(3, 3);
    transform: scale(3, 3); }
  100% {
    opacity: 0.5;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1); } }
@-webkit-keyframes animation {
  0%, 10%, 20% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  5% {
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); }
  15% {
    -webkit-transform: translate3d(0, -18px, 0);
    transform: translate3d(0, -18px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); } }
@keyframes animation {
  0%, 10%, 20% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  5% {
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); }
  15% {
    -webkit-transform: translate3d(0, -18px, 0);
    transform: translate3d(0, -18px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); } }
@keyframes sprite {
  from {
    background-position: 0 0%; }
  to {
    background-position: 0 100%; } }
@media (max-width: 1200px) {
  #hero #hero-box #hero-inner #infinity {
    height: 200px; } }
@media (max-width: 991px) {
  #hero #hero-box #hero-inner #infinity {
    height: 130px; } }
@media (max-width: 767px) {
  #hero #hero-box #hero-inner {
    width: 90%; }
    #hero #hero-box #hero-inner p img {
      transform: scale(1.25, 1.25); }
    #hero #hero-box #hero-inner #infinity {
      height: 120px; }
  #hero #hero-box .scroll-down {
    bottom: 0; } }
@media screen and (max-height: 700px) {
  #hero #hero-box #hero-inner {
    /*
    				#infinity {
    					height: 90px;
    				}				
    */
    /*
    				#infinity {
    					width: 80%;
    					margin-left: 10%;
    					height: 110px;
    				}
    */ }
    #hero #hero-box #hero-inner h1 {
      margin-top: -10px; }
    #hero #hero-box #hero-inner p {
      margin-top: 50px; } }
@media (max-width: 321px) {
  #hero #hero-box #hero-inner #infinity {
    height: 70px; } }
/*
@keyframes play {
   0% { background-image:  none; }
   14% { background-image:  none; }
   15% { background-image:  url(../images/home/infinity-1.png); }
   20% { background-image:  url(../images/home/infinity-2.png); }
   25% { background-image:  url(../images/home/infinity-3.png); }
   30% { background-image:  url(../images/home/infinity-4.png); }
   35% { background-image:  url(../images/home/infinity-5.png); }
   40% { background-image:  url(../images/home/infinity-6.png); }
   45% { background-image:  url(../images/home/infinity-7.png); }
   50% { background-image:  url(../images/home/infinity-8.png); }
   55% { background-image:  url(../images/home/infinity-9.png); }
   60% { background-image:  url(../images/home/infinity-10.png); }
   75% { background-image:  url(../images/home/infinity-11.png); }
   80% { background-image:  url(../images/home/infinity-12.png); }
   85% { background-image:  url(../images/home/infinity-13.png);  }
   100% { background-image:  url(../images/home/infinity-13.png); }
}
@-ms-keyframes play {
   0% { background-image: none; }
   14% { background-image: none; }
   15% { background-image: url(../images/home/infinity-1.png); }
   20% { background-image: url(../images/home/infinity-2.png); }
   25% { background-image: url(../images/home/infinity-3.png); }
   30% { background-image: url(../images/home/infinity-4.png); }
   35% { background-image: url(../images/home/infinity-5.png); }
   40% { background-image: url(../images/home/infinity-6.png); }
   45% { background-image: url(../images/home/infinity-7.png); }
   50% { background-image: url(../images/home/infinity-8.png); }
   55% { background-image: url(../images/home/infinity-9.png); }
   60% { background-image: url(../images/home/infinity-10.png); }
   75% { background-image: url(../images/home/infinity-11.png);}
   80% { background-image: url(../images/home/infinity-12.png);}
   85% { background-image: url(../images/home/infinity-13.png);  }
   100% { background-image: url(../images/home/infinity-13.png); }
}
*/
/* top-menu
--------------------------------------------------*/
.home .site-header-main {
  border-bottom: none;
  /*
  		.global-menu {
  			display: none;		
  		}
  */ }
.home #topmenu {
  width: 100%;
  padding: 15px 10%; }
  .home #topmenu ul {
    text-align: center;
    margin-bottom: 0; }

@media (max-width: 767px) {
  .home #topmenu {
    display: none; } }
/* 会社概要
--------------------------------------------------*/
#about {
  position: relative;
  background-image: url(../images/home/bg-about.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 100px; }
  #about p {
    margin-left: auto;
    margin-right: auto;
    width: 50%; }

@media (max-width: 767px) {
  #about {
    background-image: url(../images/home/bg-about-light.jpg);
    margin-top: 50px; }
    #about p {
      width: 90%; } }
/* 事業内容
--------------------------------------------------*/
#works {
  background-color: #fafafa;
  padding-bottom: 75px;
  overflow-x: hidden; }
  #works .unit {
    position: relative;
    text-align: right;
    overflow: hidden;
    margin-bottom: 25px;
    border: 1px solid #dedede;
    box-shadow: 0px 0px 6px 0px #d4d4d4;
    -moz-box-shadow: 0px 0px 6px 0px #d4d4d4;
    -webkit-box-shadow: 0px 0px 6px 0px #d4d4d4; }
    #works .unit .box {
      display: inline-block;
      width: 50%;
      background-color: #ffffff;
      text-align: center;
      padding: 50px 25px;
      transition: all 0.3s ease; }
      #works .unit .box h2 {
        font-size: 24px;
        font-weight: normal;
        margin-bottom: 12.5px;
        margin-top: 0; }
        #works .unit .box h2 img {
          display: block;
          margin-left: auto;
          margin-right: auto;
          margin-bottom: 12.5px; }
      #works .unit .box a {
        color: #000000;
        text-decoration: none; }
    #works .unit .box:after {
      position: absolute;
      left: 0;
      top: 0;
      display: block;
      content: " ";
      width: 50%;
      height: 100%;
      background-color: #dedede;
      background-position: center center;
      background-size: cover;
      transform: scale(1, 1);
      transition: transform .5s ease-out; }
  #works .unit:hover .box {
    background-color: rgba(93, 200, 255, 0.3); }
  #works .unit:hover .box:after {
    transform: scale(1.2, 1.2); }
  #works .box-left {
    text-align: left; }
    #works .box-left .box:after {
      left: 50%; }
  #works .results .box:after {
    background-image: url(../images/home/bg-works-results.jpg); }
  #works .skills .box:after {
    background-image: url(../images/home/bg-works-skills.jpg); }
  #works .led .box:after {
    background-image: url(../images/home/bg-works-led.jpg); }
  #works .unit-banner {
    position: relative;
    padding: 25px;
    background-color: #ffffff;
    border: 1px solid #dedede;
    transition: all 0.3s ease;
    box-shadow: 0px 0px 6px 0px #d4d4d4;
    -moz-box-shadow: 0px 0px 6px 0px #d4d4d4;
    -webkit-box-shadow: 0px 0px 6px 0px #d4d4d4; }
    #works .unit-banner p {
      margin: 0;
      font-size: 20px;
      line-height: 1.5;
      text-align: center; }
      #works .unit-banner p a {
        color: #000000;
        text-decoration: none; }
  #works .unit-banner:hover {
    background-color: rgba(93, 200, 255, 0.3); }
  #works .unit-external:after {
    position: absolute;
    content: " ";
    width: 16px;
    height: 16px;
    display: block;
    right: 12.5px;
    bottom: 12.5px;
    background-image: url(../images/common/icon-external.svg);
    background-position: center center;
    background-size: cover; }

@media (max-width: 991px) {
  #works .unit-banner p {
    margin-top: 16.6666666667px;
    font-size: 14px; } }
@media (max-width: 767px) {
  #works .unit,
  #works .box-left {
    text-align: center;
    /*
     			padding-top: 200px;
    */ }
    #works .unit .box,
    #works .box-left .box {
      width: 100%; }
    #works .unit .box:after,
    #works .box-left .box:after {
      display: none;
      /*
      				left: 0;
      				width: 100%;
      				height: 200px;
      */ } }
/* 採用情報・お問い合わせ
--------------------------------------------------*/
#others {
  position: relative;
  z-index: 10; }
  #others .section {
    position: relative;
    z-index: 10;
    padding-top: 25px;
    padding-bottom: 0; }
    #others .section .unit .box {
      padding: 50px;
      background-color: #ffffff;
      border: 1px solid #dedede;
      padding: 5px;
      transition: background-color 0.3s ease;
      box-shadow: 0px 0px 6px 0px #d4d4d4;
      -moz-box-shadow: 0px 0px 6px 0px #d4d4d4;
      -webkit-box-shadow: 0px 0px 6px 0px #d4d4d4; }
      #others .section .unit .box .inner {
        border: 1px solid #dedede;
        padding: 25px 0 0; }
        #others .section .unit .box .inner a img {
          width: 80%;
          margin-bottom: 16.6666666667px; }
    #others .section .unit .box:hover {
      background-color: #d7eefd; }

#others:after {
  display: block;
  content: " ";
  width: 100%;
  height: 270px;
  background-color: blue;
  position: absolute;
  top: 0;
  z-index: 0;
  background-image: url(../images/home/bg-others.jpg);
  background-position: center center;
  background-size: cover; }

@media (max-width: 767px) {
  #others .section {
    padding-bottom: inherit; }
  #others #contact {
    padding-top: 0; }

  #others:after {
    height: 100%; } }

/*# sourceMappingURL=home.css.map */
