@charset "utf-8";
/* common
==================================*/


/* heroArea
==================================*/
  .heroArea{
    position: relative;
    background: url(../../images/index/main.jpg) no-repeat;
    background-size: cover;
    background-position: center right 32%;
    width: 100%;
    height: 71.4vh;
  }
  .heroArea .inner{
    position: absolute;
    left: 0;
    right: 0;
    top: 17%;
    text-align: center;
    margin: auto;
  }
  .heroArea .logo{
    padding: 0 0 30px;
  }
  .heroArea .logo img{
    display: block;
    width: 127px;
    margin: auto;
  }
  .heroArea p{
    padding: 0 10px;
    font-size: 15px;
    line-height: 31px;
    letter-spacing: 0.1em;
    font-weight: 300;
  }
  @media screen and (max-width: 405px){
    .heroArea .logo{
      padding: 0 0 20px;
    }
    .heroArea p{
      font-size: 13px;
      line-height: 26px;
    }
  }

  .logo-t{
    opacity: 0;
    transition: 2s;
  }
  .logo-b{
    opacity: 0;
    transition: 4s;
  }
  .move{
    opacity: 1;
  }


/* menuArea
==================================*/
  .menuArea{
    box-sizing: border-box;
    padding: 30px 0;
  }
  .menuArea .inner{
    height: 100%;
  }
  .menuArea ul{
    max-width: 100%;
  }
  .menuArea ul li{
    position: relative;
    height: 40vw;
    overflow: hidden;
  }
  .menuArea ul li::after{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    content: "";
    background-color: rgba(0,0,0,.3);
    width: 100%;
    height: 100%;
    transition: 1s;
  }
  .menuArea ul li:hover::after{
    opacity: 0;
  }
  .menuArea ul li::before{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: 1s;
  }
  .menuArea ul li.history::before{
    background-image: url(../../images/index/History.jpg);
  }
  .menuArea ul li.concept::before{
    background-image: url(../../images/index/Concept.jpg);
  }
  .menuArea ul li.column::before{
    background-image: url(../../images/index/Column.jpg);
  }
  .menuArea ul li:hover::before{
    transition: 5s;
    transform: scale(1.15);
  }
  .menuArea ul li a{
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  .menuArea ul li img{ width: 114px; }

