/* TO TOPへのボタン */
.el_totop{
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: var(--z-index-totop);
  display: none;
  transition: all .3s;
}
.el_totop a{
  position: relative;
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 100px;
  background-color: #fff;
  box-shadow: 0px 0px 15px  rgba(0, 0, 0, .2);
}
.el_totop a:hover{
  background-color: var(--primary-700);
}
.el_totop a::before{
  position: absolute;
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(/lpl/asset_md_ai/image/icon_totop-orange.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.3s;
}
.el_totop a::after{
  position: absolute;
  content: "";
  display: block;
  width: 26px;
  height: 2px;
  bottom: 33%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-700);
  transition: none;
}
.el_totop a:hover::before{
  background-image: url(/lpl/asset_md_ai/image/icon_totop-white.svg);
  transform: translate(-50%, -70%);
}
.el_totop a:hover::after{
  background-color: #fff;
}

/* 流れるロゴ */
.el_companylogo{
  width: 100%;
  text-align: center;
  margin-inline: auto;
  background: url(/lpl/asset_md_ai/image/partner_pickup-company.webp) repeat-x 0 0;
  background-size: 2997px auto;
  height: 155px;
  overflow: hidden;
  animation: loop 50s linear infinite;
}
.el_companylogo.el_companylogo--mt{
  margin-top: 50px;
}
@keyframes loop {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -2997px 0;
  }
}

/* ヘッダーロゴ */
.el_header-logo{
  max-width: 240px;
  width: 100%;
}
.el_header-logo a:hover{
  opacity: .5;
}

/* メニューボタン */
.el_header-button{
  position: relative;
  display: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
}
.el_header-button-line{
  width: 24px;
  height: 3px;
  background: var(--primary-700);
  display: block;
  position: absolute;
  left: 13px;
  transition: all 0.3s ease 0s;
  transform: rotate(0deg);
}
.el_header-button-line:first-of-type{
  top: 15px;
}
.el_header-button-line:nth-of-type(2){
  top: 24px;
}
.el_header-button-line:last-of-type{
  top: 33px;
}
.el_header-button.js_active .el_header-button-line:first-of-type{
  transform: rotate(-45deg);
  transform-origin: center center;
  top: 23px;
}
.el_header-button.js_active .el_header-button-line:nth-of-type(2){
  display: none;
}
.el_header-button.js_active .el_header-button-line:last-of-type{
  transform: rotate(45deg);
  transform-origin: center center;
  top: 23px;
}
/* サイドメニュー */
.m_side-menu{
  position: fixed;
  z-index: var(--z-index-hamburger-menu);
  display: none;
  width: 100%;
  background: #fff;
  left: 0;
  top: 50px;
  height: 100vh;
  overflow-y: scroll;
  margin-top: 0;
  padding: 10px;
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.3);
}
.m_side-menu__item{
  position: relative;
  border-bottom: 2px solid var(--gray-line-300);
}
.m_side-menu__item:last-of-type{
  border-bottom: none;
}
.m_side-menu__link{
  display: block;
  font-weight: bold;
  margin-bottom: 0;
  padding: 15px 20px;
  text-align: left;
}
.m_side-menu__link:after{
  content: "";
  position: absolute;
  display: block;
  width: 14px;
  height: 20px;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: url(/lpl/asset_md_ai/image/icon_down-arrow-orange.svg) no-repeat no-repeat center center;
}
.ly_side-menu-cta{
  margin: 15px auto 0;
}
/* header */
.ly_header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: var(--z-index-header);
  transition: box-shadow 0.3s;
}
.ly_header.js_header-active{
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
}
.ly_header__inner{
  padding: 18px 25px;
}
.m_header{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.m_header__link{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 30px;
}
.m_header__menu{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 30px;
}
.m_header__menu-item{
  position: relative;
}
.m_header__menu-item:after{
  opacity: 0;
  position: absolute;
  content: "";
  display: block;
  background-color: var(--primary-700);
  width: 30px;
  height: 3px;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  transition: all .3s;
}
.m_header__menu-item a{
  font-weight: bold;
  font-size: 14px;
}
.m_header__menu-item a:hover{
  opacity: .5;
}
.m_header__menu-item:hover:after{
  opacity: 1;
}

/* FV */
.ly_fv{
  padding-top: 80px;
  overflow: hidden;
}
.ly_fv__inner{
  width: 100%;
}
.m_fv__heading{
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  text-align: left;
  font-size: 40px;
  margin-bottom: 20px;
}
.m_fv{
  position: relative;
}
.m_fv__heading-em{
  font-size: 50px;
  color: var(--primary-700);
}
.m_fv__heading-large{
  font-size: 50px;
}
.m_fv__heading-small{
  font-size: 26px;
}
.m_fv__heading-br{
  display: block;
  margin-bottom: 10px;
}
.m_fv__heading-sub-wrap {
  text-align: center;
}
.m_fv__heading-sub {
  position: relative;
  font-size: var(--fz-l);
  display: inline-block;
  margin-bottom: 15px;
}
.m_fv__heading-vertical{
  vertical-align: middle;
}
.m_fv__content{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.m_fv__main{
  max-width: 500px;
  width: 100%;
  text-align: center;
}
.m_fv__main-logo{
  margin-bottom: 30px;
  margin-inline: auto;
}
.m_fv__note{
  margin-top: 20px;
}
.m_fv-record{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 0 10px;
  margin-bottom: 30px;
}
.m_fv-record__wrap{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}
.m_fv-record__wrap:before{
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 29px;
  height: 90px;
  background: url(/lpl/asset_md_ai/image/icon_emblem-left.svg) no-repeat center / contain;
}
.m_fv-record__wrap:after{
  position: absolute;
  top: 50%;
  right: 0;
  z-index: -1;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 29px;
  height: 90px;
  background: url(/lpl/asset_md_ai/image/icon_emblem-right.svg) no-repeat center / contain;
}
.m_fv-record__copy{
  font-size: var(--fz-xs);
  font-feature-settings: "palt";
  color: var(--gray-font-line-500);
  font-weight: bold;
  line-height: 1.1;
}
.m_fv-record__copy--pt{
  padding-top: 15px;
}
.m_fv-record__copy.m_fv-record__copy--large{
  font-size: var(--fz-s);
}
.m_fv-record__copy--small{
  font-size: var(--fz-xxs);
}
.m_fv-record__copy.m_fv-record__copy--primary{
  color: var(--primary-700);
}
.m_fv-record__copy--txspace{
  letter-spacing: 1.4px;
}
.m_fv-record__no1{
  font-size: 54px;
  font-weight: bold;
  font-feature-settings: "palt";
  letter-spacing: -0.05em;
  line-height: 1;
  padding-right: 5px;
}
.m_fv-record__number{
  line-height: 1;
}
.m_fv-record__no1-small{
  font-size: var(--fz-ms);
}
.m_fv__sub{
  position: relative;
  max-width: 560px;
  width: 100%;
}
.m_fv__sub.m_fv__sub--sp{
  display: none;
}
.m_fv__sub-image{
  position: relative;
  z-index: 2;
  margin-bottom: 10px;
}
.m_fv__sub-movie{
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: auto;
  padding: 3% 12% 0%;
}
.m_fv__sub-movie video{
  width: 100%;
  height: 100%;
}
.m_fv__sub-small{
  line-height: 1;
}
.m_fv__sub-small small{
  font-size: 10px;
}
.m_fv__sub-small.m_fv__sub-small--sp{
  display: none;
}
.m_fv__image-left{
  position: absolute;
  bottom: 0;
  left: -200px;
  width: 189px;
}
.m_fv__image-right{
  position: absolute;
  bottom: 0;
  right: -150px;
  width: 125px;
}
.m_fv__image-left.m_fv__image-left--sp,.m_fv__image-right.m_fv__image-right--sp{
  display: none;
}
/* 累計導入社数 */
.ly_achievement{
  padding-top: 50px;
}
.ly_achievement__inner{
  max-width: 1100px;
  width: 100%;
  margin-inline: auto;
}
.m_achievement__company{
  width: 100%;
}
.m_achievement__record{
  max-width: 380px;
  width: 100%;
}
.m_achievement__record-text{
  font-size: var(--fz-s);
  line-height: var(--line-height-l);
}
.m_achievement__record .m_achievement__text-strong{
  font-size: 117px;
  font-weight: bold;
  color: var(--primary-700);
  line-height: 1;
  letter-spacing: -0.05em;
}
.m_achievement__record .m_achievement__text-large{
  font-size: 36px;
  font-weight: bold;
  line-height: 1;
}
.m_achievement__record .m_achievement__text-middle{
  font-size: 37px;
  font-weight: bold;
  line-height: 1.2;
}
.m_achievement__record-flex{
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  gap: 0 20px;
}
/* 1030px 以下 グローバルメニュー調整*/
@media (max-width: 1270px) {
  /* ヘッダー */
  .m_header .el_header-logo{
    max-width: 120px;
  }
  .m_header__menu-item a{
    font-size: 11px;
  }
  .m_header__link{
    gap: 0 10px;
  }
  .m_header__menu{
    gap: 0 10px;
  }
}
@media (max-width: 930px) {
  .m_header{
    flex-wrap: wrap;
  }
  .m_header__link{
    margin-inline-start: auto;
  }
}
/* 768px 以下 グローバルメニュー調整*/
@media (max-width: 768px) {
  /* TO TOPへのボタン */
  .el_totop{
    bottom: 20px;
    right: 20px;
  }
  .el_totop a{
    position: relative;
    display: block;
    width: 60px;
    height: 60px;
  }
  .el_totop a::before{
    position: absolute;
    content: "";
    display: block;
    width: 16px;
    height: 16px;
  }
  .el_totop a::after{
    width: 16px;
    height: 1px;
  }
  /* メニューボタン */
  .el_header-button{
    display: block;
  }
  .ly_header{
    height: 50px;
  }
  .ly_header__inner{
    padding: 0 10px;
  }
  .m_header__menu{
    display: none;
  }
  /* FV */
  .ly_fv{
    padding-top: 50px;
  }
  .ly_fv__inner{
    padding-top: 20px;
  }
  .m_fv__heading{
    font-size: 27px;
    margin-bottom: 20px;
  }
  .m_fv__heading-em,.m_fv__heading-large{
    font-size: 40px;
  }
  .m_fv__heading-small{
    font-size: 20px;
  }
  .m_fv__content{
    display: block;
  }
  .m_fv__main,.m_fv__sub{
    max-width: 100%;
  }
  .m_fv__main{
    margin-bottom: 20px;
    grid-area: a;
  }
  .m_fv__sub-image{
    width: 100%;
    max-width: 400px;
    margin-inline: auto;
  }
  .m_fv__sub{
    grid-area: b;
  }
  .m_fv__sub.m_fv__sub--pc{
    display: none;
  }
  .m_fv__sub.m_fv__sub--sp{
    display: block;
    margin-bottom: 20px;
  }
  .m_fv__sub-movie{
    left: 50%;
    transform: translateX(-50%);
    margin: auto;
    width: 100%;
    max-width: 300px;
    height: auto;
    padding: 10px 36px;
  }
  .m_fv__sub-small.m_fv__sub-small--sp{
    display: block;
  }
  .m_fv-record__wrap{
    justify-content: center;
  }
  .ly_fv-record{
    max-width: 500px;
    margin-inline: auto;
  }
  .m_fv-record{
    gap: 0 5px;
    margin-bottom: 20px;
  }
  .m_fv__main-logo{
    margin: 0 auto 20px;
  }
  .m_fv-record__copy{
    font-size: 12px;
  }
  .m_fv-record__copy--txspace{
    letter-spacing: initial;
  }
  .m_fv-record__copy-em{
    font-size: 13px;
  }
  .m_fv-record__no1{
    font-size: 40px;
  }
  .m_fv-record__copy--small{
    font-size: 10px;
  }
  .m_fv-record__copy--pt{
    padding-top: 15px;
  }
  .m_fv-record__wrap:before,.m_fv-record__wrap:after{
    width: 19px;
    height: 60px;
  }
  .m_fv__image-left{
    left: -30px;
    bottom: 0;
    width: 50px;
  }
  .m_fv__image-right{
    right: -32px;
    bottom: 0;
    width: 32px;
  }
  .m_fv__image-left.m_fv__image-left--pc,.m_fv__image-right.m_fv__image-right--pc{
    display: none;
  }
  .m_fv__image-left.m_fv__image-left--sp,.m_fv__image-right.m_fv__image-right--sp{
    display: block;
  }
  /* 導入実績 */
  .ly_achievement__inner{
    padding: 0 20px;
  }
  .m_achievement{
    display: block;
  }
  .m_achievement__company{
    margin-bottom: 20px;
  }
  .m_achievement__record{
    margin-top: 20px;
    margin-inline: auto;
  }
  .m_achievement__record p:first-of-type{
    text-align: center;
  }
  .m_achievement__record-flex{
    justify-content: center;
    gap: 0 10px;
    margin-bottom: 20px;
  }
  .m_achievement__record .m_achievement__text-strong{
    font-size: 80px;
    line-height: 1;
  }
  .m_achievement__record .m_achievement__text-large{
    font-size: 28px;
  }
  .m_achievement__record .m_achievement__text-middle{
    font-size: 26px;
  }
    /* お悩み trouble */
  .ly_trouble.ly_trouble--bg{
    background-image: none;
    padding-bottom: 80px;
  }
  .m_trouble__list{
    grid-template-columns: 1fr;
    gap: 20px 0px;
  }
}