@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: space-between;
  flex-direction: row-reverse;
  width: 100%;
  height: 100vh;
  background: #f5f4ec;
}
.lp_firstView-logo {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp_firstView-logo > p {
  display: flex;
  align-items: center;
}
.lp_firstView-logo-genten {
  display: inline-block;
  width: 140px;
  margin-bottom: -18px;
}
.lp_firstView-logo-bering {
  display: inline-block;
  width: 200px;
}
.lp_firstView-logo-cross {
  display: inline-block;
  position: relative;
  width: 60px;
  height: 60px;
  margin: 0 20px;
  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-image {
  width: 50%;
  height: 100vh;
}
.lp_firstView-image img {
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1023px) {
  .lp_firstView {
    flex-direction: column;
  }
  .lp_firstView-logo {
    width: 100%;
    height: 50vh;
  }
  .lp_firstView-logo-genten {
    width: 80px;
    margin-bottom: -11px;
  }
  .lp_firstView-logo-bering {
    width: 140px;
  }
  .lp_firstView-logo-cross {
    margin: 0 10px;
    width: 30px;
    height: 30px;
  }
  .lp_firstView-logo-cross:before,
  .lp_firstView-logo-cross:after {
    height: 1px;
  }
  .lp_firstView-image {
    width: 100%;
    height: 50vh;
  }
}


/*----------------------------------------------------------
 greet
------------------------------------------------------------*/
.lp_section.-greet .lp_h2 {
  margin-bottom: 50px;
}
.lp_section.-greet .m_gallery {
  margin-top: 80px;
}

/*----------------------------------------------------------
 about
------------------------------------------------------------*/
.lp_section.-about {
  background: #f5f4ec;
}
.lp_section.-about .m_column-context {
  padding: 5%;
}
.lp_section.-about .lp_h2 {
  margin-bottom: 50px;
}
.lp_section.-about .m_text {
  font-size: 1.8rem;
}

@media (max-width: 1023px) {
  .lp_section.-about .m_column {
    display: flex;
    flex-direction: column-reverse;
  }
  .lp_section.-about .m_column-context {
    margin-top: 0;
    padding: 50px 5% !important;
  }
  .lp_section.-about .m_text {
    font-size: 1.4rem;
  }
}

/*----------------------------------------------------------
 minervaLiscio
------------------------------------------------------------*/
.lp_section.-minervaLiscio {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  position: relative;
  min-height: 100vh;
  padding: 5%;
  background: url("../img/img03.jpg") no-repeat 50% 100%;
  background-size: cover;
}
.lp_section.-minervaLiscio:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    140deg,
  rgba(255, 255, 255, 0),
  rgba(255, 255, 255, 0) 30%,
  rgba(255, 255, 255, .8) 60%
  );
}
.lp_section.-minervaLiscio > div {
  position: relative;
  z-index: 2;
  max-width: 60%;
}
.lp_section.-minervaLiscio > div > :first-child { margin-top: 0; }
.lp_section.-minervaLiscio > div > :last-child { margin-bottom: 0; }

.lp_section.-minervaLiscio h2 {
  margin-bottom: 50px;
  text-shadow: 0 0 10px #fff;
}
.lp_section.-minervaLiscio p {
  margin: 30px 0;
  font-size: 1.6rem;
  text-shadow: 0 0 10px #fff;
  font-weight: bold;
}

@media (max-width: 1023px) {
  .lp_section.-minervaLiscio {
    padding: 50px 5% 300px;
    background-size: 100% auto;
  }
  .lp_section.-minervaLiscio:before {
    content: none;
  }
  .lp_section.-minervaLiscio > div {
    max-width: none;
  }
  .lp_section.-minervaLiscio p {
    margin: 15px 0;
    font-size: 1.4rem;
    font-weight: normal;
  }
}

/*----------------------------------------------------------
 concept
------------------------------------------------------------*/
.lp_section.-concept .lp_h2 + .m_text {
  margin-bottom: 80px;
}

@media (max-width: 1023px) {
  .lp_section.-concept {
    margin: 50px 0;
  }
  .lp_section.-concept .lp_h2 {
    text-align: left;
  }
  .lp_section.-concept .lp_h2 + .m_text {
    margin-top: -30px;
    margin-bottom: 50px;
  }
}

/*----------------------------------------------------------
 package 
------------------------------------------------------------*/
.lp_section.-package {
  margin-bottom: 100px;
}
.lp_package {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  /* padding: 30px;
  background: #f4f5f8; */
}
.lp_package-context {
  flex-grow: 1;
}
.lp_package-img {
  flex-shrink: 0;
  width: 45%;
  margin-right: 50px;
}
.lp_package-title {
  margin-bottom: 30px;
  font-size: 2.8rem;
  font-weight: bold;
}
@media (max-width: 1023px) {
  .lp_section.-package {
    margin: 50px 0;
    padding: 0 5%;
  }
  .lp_package {
    display: block;
  }
  .lp_package-context {
    padding-top: 0;
  }
  .lp_package-img {
    width: 100%;
    margin: 30px 0 0;
  }
  .lp_package-title {
    font-size: 2rem;
  }
}

/*----------------------------------------------------------
 special 
------------------------------------------------------------*/
.lp_section.-special {
  margin-bottom: 200px;
}
.lp_special {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
  border-top: 1px solid #999;
  border-bottom: 1px solid #999;
}
.lp_special-context {
  flex-grow: 1;
}
.lp_special-img {
  flex-shrink: 0;
  width: 35%;
  margin-left: 50px;
}
.lp_special-title {
  font-size: 2rem;
  font-weight: bold;
}
.lp_special-subTitle {
  margin-bottom: 30px;
  font-size: 2.8rem;
  font-weight: bold;
}
@media (max-width: 1023px) {
  .lp_section.-special {
    margin: 50px 0;
    padding: 0 5%;
  }
  .lp_special {
    display: block;
    padding: 30px 0;
  }
  .lp_special-context {
    padding-top: 0;
  }
  .lp_special-img {
    width: 100%;
    margin: 30px 0 0;
  }
  .lp_special-title {
    font-size: 1.6rem;
  }
  .lp_special-subTitle {
    margin-bottom: 15px;
    font-size: 2rem;
  }
}