@charset "UTF-8";
body {
  box-sizing: border-box;
  width: 100%;
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
}

a {
  text-decoration: none;
  color: #333;
}

ul {
  list-style: none;
  padding: 0;
}

.wrap {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

.wrap-sm {
  max-width: 1100px;
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .wrap-sm {
    width: 90%;
    margin: 0 auto;
  }
}

h2 {
  font-size: 45px;
}
@media screen and (max-width: 1600px) {
  h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 1400px) {
  h2 {
    font-size: 32px;
  }
}
@media screen and (max-width: 600px) {
  h2 {
    font-size: 26px;
  }
}

.sp_LL_display {
  display: none;
}
@media screen and (max-width: 600px) {
  .sp_LL_display {
    display: block;
  }
}

.header {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 16px 0;
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 96%;
  z-index: 100;
  border-radius: 10px;
}
@media screen and (max-width: 600px) {
  .header {
    padding: 16px 0;
  }
}

.header_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .header_wrap {
    padding: 0 80px;
  }
}
@media screen and (max-width: 600px) {
  .header_wrap {
    padding: 0;
  }
}

.header_logo {
  color: #2C2B69;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  font-size: 20px;
}
@media screen and (max-width: 600px) {
  .header_logo {
    flex-direction: column;
    gap: 0;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    font-size: 26px;
  }
}

.header_logo img {
  width: 40px;
}
@media screen and (max-width: 600px) {
  .header_logo img {
    width: 32px;
  }
}

.header_nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

@media screen and (max-width: 1000px) {
  .header_nav.nav-pc {
    display: none;
  }
}

.header_nav.nav-sp {
  display: none;
}
@media screen and (max-width: 1000px) {
  .header_nav.nav-sp {
    display: block;
  }
}

.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
  width: 38px;
  height: 32px;
  display: none;
  position: fixed;
  top: 20px;
  right: 40px;
}
@media screen and (max-width: 1000px) {
  .hamburger {
    display: block;
  }
}

.hamburger span {
  width: 100%;
  height: 3px;
  background-color: #fff;
  position: relative;
  transition: ease 0.4s;
  display: block;
  border-radius: 100px;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 8px 0;
}

.hamburger span:nth-child(3) {
  top: 0;
}

/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  transform: translateX(0);
}

.hamburger.active span:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: -14px;
  transform: rotate(-45deg);
}

@media screen and (max-width: 1000px) {
  .header_nav {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    transform: translateX(100%);
    background-color: #161635;
    transition: ease 0.4s;
  }
}

.header_nav.active {
  transform: none;
  z-index: 888;
}

.nav_list {
  padding: 90px 0;
}

.nav_list .nav_item a {
  color: #333;
  font-size: 18px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 24px;
}

.header_nav a {
  color: #333;
  transition: all 0.3s;
  font-weight: 700;
}

.header_nav a:hover {
  color: #f25B28;
}

/*------------------------- mv ------------------------*/
.mv {
  background-size: 100% 100%;
  background-color: #f7f7f7;
}

.mv_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 110px 0 120px;
}
@media screen and (max-width: 1000px) {
  .mv_wrap {
    gap: 40px;
  }
}
@media screen and (max-width: 800px) {
  .mv_wrap {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 600px) {
  .mv_wrap {
    padding: 40px 0 60px;
  }
}

.mv_txt h2 {
  margin-bottom: 40px;
  color: #f25B28;
}

.mv_txt p {
  font-size: 22px;
  line-height: 1.8;
}
@media screen and (max-width: 1600px) {
  .mv_txt p {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .mv_txt p {
    font-size: 16px;
  }
}

.mv_img {
  position: relative;
}

.mv_img_main {
  border-radius: 20px;
  width: 94%;
  margin-left: auto;
}
@media screen and (max-width: 600px) {
  .mv_img_main {
    margin: 0 auto;
    width: 86%;
  }
}

.mv_img_sub {
  border-radius: 20px;
  width: 30%;
  position: absolute;
  bottom: -4%;
  left: 0;
}
@media screen and (max-width: 600px) {
  .mv_img_sub {
    position: static;
    width: 50%;
    margin: 0 auto 16px;
  }
}

/*------------------------- optimize ------------------------*/
.optimize {
  padding: 120px 0;
}
@media screen and (max-width: 600px) {
  .optimize {
    padding: 40px 0;
  }
}

.optimize_wrap {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 120px;
}
@media screen and (max-width: 1400px) {
  .optimize_wrap {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 800px) {
  .optimize_wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.optimize h2 {
  font-size: 28px;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 60px;
  line-height: 1.7;
}
@media screen and (max-width: 600px) {
  .optimize h2 {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 600px) {
  .optimize h2 br {
    display: none;
  }
}
.optimize h2 span {
  color: #F25B28;
}

.optimize_img {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
}
@media screen and (max-width: 600px) {
  .optimize_img {
    width: 100%;
  }
}

.optimize_right p:nth-child(1) {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 24px;
}
@media screen and (max-width: 600px) {
  .optimize_right p:nth-child(1) {
    font-size: 20px;
  }
}
.optimize_right p:nth-child(1) span {
  color: #f25B28;
}
.optimize_right p:nth-child(2) {
  line-height: 1.8;
}

/*-------------------------  ------------------------*/
.analysis {
  background-color: #f7f7f7;
  background-size: 100% 100%;
  padding: 120px 0;
}
@media screen and (max-width: 600px) {
  .analysis {
    padding: 40px 0;
  }
}

.analysis_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
@media screen and (max-width: 1400px) {
  .analysis_wrap {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 800px) {
  .analysis_wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.analysis h2 {
  margin-bottom: 40px;
  font-size: 28px;
}
@media screen and (max-width: 600px) {
  .analysis h2 {
    font-size: 22px;
  }
}

.analysis_left img:not(:last-child) {
  margin-bottom: 40px;
}

/*------------------------- flow ------------------------*/
.flow {
  padding: 120px 0;
  background-color: #fff;
}
@media screen and (max-width: 600px) {
  .flow {
    background-color: #fff;
  }
}

.flow_content {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .flow_content {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 600px) {
  .flow_content {
    gap: 12px;
  }
}

.flow h2 {
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
  .flow h2 {
    font-size: 28px;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 24px;
  }
}

.flow_item {
  margin-bottom: 20px;
}

.flow_item h3 {
  color: #f25B28;
  font-size: 22px;
  margin-bottom: 8px;
}
@media screen and (max-width: 600px) {
  .flow_item h3 {
    font-size: 20px;
    margin-bottom: 6px;
  }
}

.flow_item p {
  line-height: 1.8;
}

/*------------------------- consult ------------------------*/
.consult {
  background-color: #f7f7f7;
  background-size: 100% 100%;
  padding: 120px 0;
}
@media screen and (max-width: 600px) {
  .consult {
    padding: 40px 0;
  }
}

.consult_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
@media screen and (max-width: 1400px) {
  .consult_wrap {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 1000px) {
  .consult_wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.consult h2 {
  color: #f25B28;
  font-size: 28px;
  margin-bottom: 8px;
}
@media screen and (max-width: 600px) {
  .consult h2 {
    font-size: 22px;
  }
}

.consult p {
  line-height: 1.5;
  font-size: 18px;
}
@media screen and (max-width: 600px) {
  .consult p {
    font-size: 16px;
  }
}
.consult p:not(:last-child) {
  margin-bottom: 20px;
}

.consult_right img {
  border-radius: 20px;
}

/*------------------------- cost ------------------------*/
.cost {
  background-size: 100% 100%;
  padding: 120px 0;
}
@media screen and (max-width: 600px) {
  .cost {
    padding: 40px 0;
  }
}

@media screen and (max-width: 600px) {
  .cost_wrap.wrap-sm {
    width: 100%;
  }
}

.cost_top {
  margin-bottom: 60px;
}
@media screen and (max-width: 1400px) {
  .cost_top {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 1000px) {
  .cost_top {
    gap: 40px;
  }
}
@media screen and (max-width: 800px) {
  .cost_top {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 600px) {
  .cost_top {
    width: 90%;
    margin: 0 auto 24px;
    gap: 16px;
  }
}

.cost h2 {
  color: #f25B28;
  font-size: 28px;
  margin-bottom: 24px;
  text-align: center;
}

.cost p {
  font-size: 18px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .cost p {
    font-size: 18px;
  }
}
.cost p .small_txt {
  font-size: 14px;
}
@media screen and (max-width: 600px) {
  .cost p .small_txt {
    font-size: 16px;
  }
}
.cost p .color_txt {
  color: #f25B28;
}

/*------------------------- feature ------------------------*/
.feature {
  padding: 120px 0;
  background-color: #f7f7f7;
}
@media screen and (max-width: 600px) {
  .feature {
    padding: 40px 0;
  }
}

.sec_heading {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 80px;
}
@media screen and (max-width: 600px) {
  .sec_heading {
    margin: 0 auto 24px;
  }
}

.heading_line {
  display: block;
  width: 100px;
  height: 3px;
  background-color: #f25B28;
  margin: 0 auto 4px;
}

.sec_heading h2 {
  font-size: 32px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 2px;
}
@media screen and (max-width: 1000px) {
  .sec_heading h2 {
    font-size: 36px;
  }
}
@media screen and (max-width: 600px) {
  .sec_heading h2 {
    font-size: 26px;
    text-align: center;
  }
}

.heading_bottom {
  color: #333;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 14px;
}
@media screen and (max-width: 600px) {
  .heading_bottom {
    text-align: center;
  }
}

.heading_sub {
  display: block;
  font-size: 20px;
  margin: 24px auto 0;
}

.feature_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 80px;
  row-gap: 80px;
}
@media screen and (max-width: 800px) {
  .feature_list {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
  }
}
@media screen and (max-width: 600px) {
  .feature_list {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }
}

.feature_item img {
  width: 100%;
  height: 158px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto 20px;
}

.feature_item h3 {
  font-size: 20px;
  color: #f25B28;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 12px;
  font-weight: 500;
}
@media screen and (max-width: 800px) {
  .feature_item h3 {
    font-size: 20px;
  }
}

.feature_item p {
  line-height: 1.8;
  font-size: 16px;
}
@media screen and (max-width: 800px) {
  .feature_item p {
    font-size: 16px;
  }
}
.feature_item p span {
  color: #f25B28;
  font-weight: 500;
  font-size: 18px;
}
@media screen and (max-width: 800px) {
  .feature_item p span {
    font-size: 20px;
  }
}

/*------------------------- install ------------------------*/
.install {
  padding: 120px 0;
}

.install_list {
  display: grid;
  grid-template-columns: 460px 460px;
  gap: 40px;
  row-gap: 80px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .install_list {
    grid-template-columns: 400px 400px;
  }
}
@media screen and (max-width: 1000px) {
  .install_list {
    grid-template-columns: 400px;
    row-gap: 40px;
  }
}
@media screen and (max-width: 600px) {
  .install_list {
    grid-template-columns: 1fr;
    max-width: 400px;
    width: 90%;
    margin: 0 auto;
    row-gap: 24px;
    padding: 40px 0;
  }
}

.install_item {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.install_ttl {
  background-color: #f25B28;
  padding: 8px 0;
  width: 100%;
  margin-bottom: 4px;
}
.install_ttl h3 {
  font-size: 20px;
  color: #fff;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.install_inner {
  background-color: #fff2ed;
  padding: 20px;
  flex: 1;
}

.install_inner_item:not(:last-child) {
  margin-bottom: 12px;
}

.install_inner_item h4 {
  font-size: 18px;
  margin-bottom: 4px;
  font-weight: 500;
}
.install_inner_item h4 span {
  color: #f25B28;
}

.install_inner_item p {
  line-height: 1.6;
  padding-left: 28px;
}

/*------------------------- cta ------------------------*/
.cta {
  background-color: #f7f7f7;
  padding: 120px 0;
}

.cta_btn {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  background-color: #fff;
  padding: 16px 80px;
  border: 1px solid #333;
  box-shadow: 2px 2px 8px #aaa;
  transition: all 0.3s;
}
.cta_btn:hover {
  opacity: 0.6;
}

/*------------------------- footer ------------------------*/
.footer {
  padding: 60px 0;
  background-color: #333;
  color: #fff;
}
@media screen and (max-width: 600px) {
  .footer {
    padding: 60px 0;
  }
}

.footer_wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 600px) {
  .footer_wrap {
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
  }
}

.footer_logo {
  font-size: 16px;
  margin-bottom: 16px;
}
.footer_logo img {
  width: 60px;
  margin-bottom: 8px;
}

.footer_left p {
  line-height: 1.8;
  font-size: 14px;
}

.footer_right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 14px;
  align-items: end;
}
@media screen and (max-width: 600px) {
  .footer_right {
    align-items: flex-start;
  }
}
.footer_right a {
  color: #fff;
}/*# sourceMappingURL=lp.css.map */