@charset "utf-8";
/* ===================================================================
 style.css
======================================================================*/

/* Reset */
.contents,
.lp-body {
  padding-top: 0;
}
.lp-header {
  display: none;
}

/*----------------------------------------------------------
 firstView
------------------------------------------------------------*/
.lp_firstView {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  width: 100%;
  height: 100vh;
  background: #f5f4ec;
  overflow: hidden;
}
.lp_firstView-title {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 7% 5%;
}
.lp_firstView-logo {
  display: flex;
  align-items: center;
}
.lp_firstView-logo-genten {
  display: inline-block;
  width: 120px;
  margin-bottom: -12px;
}
.lp_firstView-logo-bering {
  display: inline-block;
  width: 180px;
}
.lp_firstView-logo-cross {
  display: inline-block;
  position: relative;
  width: 40px;
  height: 40px;
  margin: 0 15px;
  text-indent: -9999px;
}
.lp_firstView-logo-cross:before,
.lp_firstView-logo-cross:after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  left: 0;
  width: 100%;
  height: 2px;
  background: #999;
}
.lp_firstView-logo-cross:before { transform: rotate(45deg); }
.lp_firstView-logo-cross:after { transform: rotate(-45deg); }

.lp_firstView-subtitle {
  margin-top: 15px;
  font-size: 7.4rem;
  color: #444;
  line-height: 1;
  text-shadow: 0 0 5px #f5f4ec;
  font-weight: bold;
}
.lp_firstView-lead {
  margin-top: 50px;
  font-size: 3.2rem;
  text-shadow: 0 0 5px #f5f4ec;
  font-weight: bold;
}

.lp_firstView-image {
  position: relative;
  width: 60%;
  height: 100vh;
}
.lp_firstView-image:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 10%;
  height: 100%;
  background: linear-gradient(to right, rgba(245,244,236), rgba(245,244,236,0));
}
.lp_firstView-image img {
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1023px) {
  .lp_firstView {
    flex-direction: column;
    justify-content: flex-start;
  }
  .lp_firstView-image {
    width: 100%;
    height: 60vh;
  }
  .lp_firstView-image:after {
    content: none;
  }
  .lp_firstView-title {
    position: relative;
    height: auto;
    padding: 10% 5%;
  }
  .lp_firstView-logo {
  }
  .lp_firstView-logo-genten {
    width: 70px;
  }
  .lp_firstView-logo-bering {
    width: 130px;
  }
  .lp_firstView-logo-cross {
    width: 26px;
    height: 26px;
    margin: 0 10px;
  }
  .lp_firstView-subtitle {
    font-size: 3.8rem;
  }
  .lp_firstView-lead {
    margin-top: 30px;
    font-size: 2rem;
    line-height: 1.5;
  }
}

