@charset "utf-8";
/* ===================================================================
 contents.css
======================================================================*/
.lp_main {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
.lp_main:after {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  background: url("../img/bg.jpg") no-repeat 50% 50%;
  background-size: cover;
}
.lp_inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 50px;
}

@media (max-width: 1023px) {
  .lp_main {
    padding-top: 60px;
  }
  .lp_inner {
    padding: 0 20px;
  }
}

/*----------------------------------------------------------
 contents
------------------------------------------------------------*/
.lp_contents {
}
.lp_contents-inner {
  padding-bottom: 150px;
  background: #fff;
}

@media (max-width: 1023px) {
  .lp_contents-inner {
    padding-bottom: 80px;
  }
}

/* contents-header
-------------------------------------------------*/
.lp_contents-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.lp_contents-header-title {
  font-size: 6.4rem;
  line-height: 1.2;
  text-align: center;
  font-weight: bold;
  font-family: "Lato";
}
.lp_contents-header-img {
  width: 50%;
  max-width: 552px;
  height: 50vh;
  margin: 40px auto 0;
}
.lp_contents-header-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 1023px) {
  .lp_contents-header {
    min-height: calc(100vh - 60px);
    padding: 0 20px 60px;
  }
  .lp_contents-header-title {
    font-size: 3.6rem;
  }
  .lp_contents-header-img {
    width: 100%;
    max-width: none;
    height: auto;
    margin: 30px 0 0;
  }
}

/*----------------------------------------------------------
 section
------------------------------------------------------------*/
.lp_section {
  position: relative;
  z-index: 2;
}
.lp_section.-top {
  padding-top: 150px;
}
.lp_section.-top:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 34vw;
  height: calc(34vw * 1.34);
  background: url("../img/sec01_bg.png") no-repeat 0 0;
  background-size: cover;
}
.lp_section.-bottom {
  padding-top: calc(46.4vw * 0.67);
}
.lp_section.-bottom:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: 48.4vw;
  height: calc(46.4vw * 0.67);
  background: url("../img/sec02_bg.png") no-repeat 0 0;
  background-size: cover;
}

@media (max-width: 1023px) {
  .lp_section {
    padding-top: 80px;
  }
  .lp_section.-top {
    padding-top: 160px;
  }
  .lp_section.-top:before {
    width: 42.7vw;
    height: calc(42.7vw * 1.34);
  }
  .lp_section.-bottom {
    margin-top: 40px;
    padding-top: calc(74.7vw * 0.67);
  }
  .lp_section.-bottom:before {
    width: 74.7vw;
    height: calc(74.7vw * 0.67);
  }
}

/*----------------------------------------------------------
 module
------------------------------------------------------------*/
.m_text {
  font-size: 2rem;
  line-height: 3;
  font-weight: bold;
}
.m_img {
  max-width: 900px;
}
.m_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 400px;
  height: 60px;
  border: 1px solid #333;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: bold;
}
.m_btn:hover {
  background: #333;
  color: #fff;
  opacity: 1;
}

@media (max-width: 1023px) {
  .m_text {
    font-size: 1.4rem;
    line-height: 2;
    text-align: center;
  }
  .m_btn {
    width: 100%;
    height: 50px;
    font-size: 1.4rem;
  }
}

/* row
-------------------------------------------------*/
.m_row {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.m_row > * + * {
  margin-top: 160px;
}
.m_row p {
  text-align: center;
}

@media (max-width: 1023px) {
  .m_row > * + * {
    margin-top: 40px;
  }
}

/* column
-------------------------------------------------*/
.m_grid {
  display: grid;
  grid-template-columns: 53% 1fr;
  grid-template-rows: auto;
  column-gap: 5.3%;
}
.m_grid-context {
  display: grid;
  align-items: end;
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}
.m_grid-btn {
  display: grid;
  align-items: top;
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  margin-top: 80px;
}
.m_grid-img {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

@media (max-width: 1023px) {
  .m_grid {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
  }
  .m_grid-context {
    order: 1;
  }
  .m_grid-btn {
    order: 3;
    margin-top: 40px;
  }
  .m_grid-img {
    order: 2;
    margin-top: 40px;
  }
}
