@charset "utf-8";
/* 色の変数定義 */
:root{
  --primary-700: #F08300;
  --sub-500: #F6B466;
  --gray-bg-100: #F5F5F5;
  --main-900: #E14400;
  --main-800: #E86300;
  --main-600: #F39B33;
  --main-400: #F9CD99;
  --main-300: #FCE6CC;
  --emphases-200: #FEF2E5;
  --main-100: #FFF9F2;
  --gray-font-700: #323232;
  --gray-600: #5A5A5A;
  --gray-font-line-500: #6E6E6E;
  --gray-font-400: #BEBEBE;
  --gray-line-300: #D2D2D2;
  --gray-200: #E6E6E6;
  --attention-red: #F01000;
  --blue: #2C47CA;
  --light-blue: #338FF0;
}
/* 階層の変数定義 z-index*/
:root{
  --z-index-header: 1000;
  --z-index-hamburger-menu: 999;
  --z-index-totop: 999;
  --z-index-modal: 1001;
}
  /* セクションのSPサイズ時 インナー幅padding */
:root{
  --sec-padding-inner: 20px;
}
/* セクション間(上下)の空白の変数定義 z-index*/
:root{
  --sec-padding: 150px 0;
  --sec-padding-top: 150px;
  --sec-padding-bottom: 150px;
}
/* コンテンツ間の余白　パディング マージン*/
:root{
  --con-padding: 80px 0;
  --con-padding-top: 80px;
  --con-padding-bottom: 80px;
  --con-margin-m: 30px;
}
/* CTA間の余白　パディング マージン*/
:root{
  --cta-padding: 60px 0;
  --cta-padding-top: 60px;
  --cta-padding-bottom: 60px;
  --cta-margin-m: 60px;
}
/* line-height 行間設定*/
:root{
  --line-height-s: 1.2;
  --line-height-m: 1.4;
  --line-height-l: 1.6;
  --line-height-xl: 2;
}
/* セクションのインナー幅 */
:root{
  --max-width-1400: 1400px;
  --max-width-1300: 1300px;
  --max-width-1200: 1200px;
  --max-width-1100: 1100px;
  --max-width-1000: 1000px;
  --max-width-900: 900px;
  --max-width-800: 800px;
  --margin-inline-auto: auto;
}
/* フォントサイズ */
:root{
  --h1-l: 42px;
  --h1-m: 36px;
  --h1-s: 30px;
  --h2-l: 36px;
  --h2-m: 30px;
  --h2-s: 18px;
  --h3-l: 24px;
  --h3-s: 20px;
  --fz-xl: 30px;
  --fz-l: 24px;
  --fz-m: 20px;
  --fz-ms: 18px;
  --fz-s: 16px;
  --fz-xs: 14px;
  --fz-xxs: 12px;
}
@media (max-width: 768px) {
  :root{
  --sec-padding: 80px 0;
  --sec-padding-top: 80px;
  --sec-padding-bottom: 80px;
  }
  /* コンテンツ間の余白　パディング マージン*/
  :root{
    --con-padding: 50px 0;
    --con-padding-top: 50px;
    --con-padding-bottom: 50px;
    --con-margin-m: 30px;
  }
  /* CTA間の余白　パディング マージン*/
  :root{
    --cta-padding: 30px 0;
    --cta-padding-top: 30px;
    --cta-padding-bottom: 30px;
    --cta-margin-m: 30px;
  }
  /* フォントサイズ */
  :root{
    --h1-l: 30px;
    --h1-m: 24px;
    --h1-s: 20px;
    --h2-l: 24px;
    --h2-m: 20px;
    --h2-s: 18px;
    --h3-l: 20px;
    --h3-s: 16px;
    --fz-xl: 24px;
    --fz-l: 20px;
    --fz-m: 16px;
    --fz-ms: 16px;
    --fz-s: 14px;
    --fz-xs: 12px;
  }
}
/* ヘルパー */
.hl_bg-gray{
  background-color: var(--gray-bg-100);
}
.hl_text-wrap{
  display: inline-block;
}
.hl_text-primary{
  color: var(--primary-700);
}
.hl_text-wrap-block{
  display: block;
}
.hl_underline{
  border-bottom: 1px solid var(--gray-font-700);
}
.hl_underline:hover{
  border-bottom: none;
}
.hl_display-sp{
  display: none;
}
.hl_sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.hl_text-align-center{
  text-align: center;
}
/* レイアウト */
.ly_section-padding{
  padding: var(--sec-padding);
}
.ly_section-padding-top{
  padding-top: var(--sec-padding-top);
}
.ly_section-padding-bottom{
  padding-bottom: var(--sec-padding-bottom);
}
/* コンテンツ間　余白　共通レイアウト項目 */
.ly_content-padding{
  padding: var(--con-padding);
}
.ly_content-padding-top{
  padding-top: var(--con-padding-top);
}
.ly_content-padding-bottom{
  padding-bottom: var(--con-padding-bottom);
}
/* cta間　余白　共通レイアウト項目 */
.ly_cta-padding{
  padding: var(--cta-padding);
}
.ly_cta-padding-top{
  padding-top: var(--cta-padding-top);
}
.ly_cta-padding-bottom{
  padding-bottom: var(--cta-padding-bottom);
}
/* セクションのインナー幅 */
.ly_section-inner-1400{
  max-width: var(--max-width-1400);
  margin-inline: var(--margin-inline-auto);
}
.ly_section-inner-1300{
  max-width: var(--max-width-1300);
  margin-inline: var(--margin-inline-auto);
}
.ly_section-inner-1200{
  max-width: var(--max-width-1200);
  margin-inline: var(--margin-inline-auto);
}
.ly_section-inner-1100{
  max-width: var(--max-width-1100);
  margin-inline: var(--margin-inline-auto);
}
.ly_section-inner-1000{
  max-width: var(--max-width-1000);
  margin-inline: var(--margin-inline-auto);
}
.ly_section-inner-900{
  max-width: var(--max-width-900);
  margin-inline: var(--margin-inline-auto);
}
.ly_section-inner-800{
  max-width: var(--max-width-800);
  margin-inline: var(--margin-inline-auto);
}
/* PC時のインナー担保幅 */
.ly_section-padding-inner{
  padding-left: var(--sec-padding-inner);
  padding-right: var(--sec-padding-inner);
}
/* CTA el_*/
.ly_cta-btn.ly_cta-btn--center a{
  margin-inline: auto;
}
.el_cta-btn a{
  position: relative;
  display: inline-block;
  max-width: 320px;
  width: 100%;
  height: 70px;
  padding: 0 25px;
  background-color: var(--primary-700);
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.05em;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--primary-700);
  border-radius: 50px;
}
.el_cta-btn a:after{
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 14px;
  height: 13px;
  background: url(/lpl/asset_md_01_trial/image/icon_cta-arrow.svg) no-repeat no-repeat center center;
}
.el_cta-btn a:hover{
  background-color: #fff;
  color: var(--primary-700);
}
.el_cta-btn a:hover:after{
  background: url(/lpl/asset_md_01_trial/image/icon_cta-arrow-orange.svg) no-repeat no-repeat center center;
  transform: translateY(-50%) translateX(5px);
}
/* ライン付き　ボックス型CTA */
.ly_cta-box.ly_cta-box---pdt{
  padding-top: var(--sec-padding-top);
}
.ly_cta-box.ly_cta-box---pdb{
  padding-bottom: var(--sec-padding-bottom);
}
.ly_cta-box__inner{
  max-width: 900px;
  width: 100%;
  margin-inline: auto;
  padding: 50px;
  border: 6px solid var(--primary-700);
  border-radius: 10px;
  background-color: #fff;
}
.ly_cta-box__inner.ly_cta-box__inner--gray{
  border: 6px solid var(--gray-line-300);
}
.m_cta-box{
  display: grid;
  grid-template-columns: minmax(0, 400px) minmax(min(320px, 100%), auto);
  align-items: center;
  gap: 0 20px;
}
.m_cta-box__text{
  font-size: 20px;
  font-weight: bold;
  line-height: var(--line-height-m);
}
.m_cta-box__em{
  font-size: 24px;
  color: var(--primary-700);
}
/* セクション見出し el_heading-l */
.el_heading-l{
  font-size: 24px;
  line-height: 1.5;
  font-weight: normal;
  text-align: center;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}
.el_heading-line{
  text-align: center;
}
.el_heading-line__wrap{
  position: relative;
  display: inline-block;
  font-size: 36px;
  font-weight: bold;
}
.el_heading-line__wrap:before{
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  left: -80px;
  height: 1px;
  width: 50px;
  background-color: var(--gray-font-line-500);
  transform: translateY(-50%);
}
.el_heading-line__wrap:after{
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  right: -80px;
  height: 1px;
  width: 50px;
  background-color: var(--gray-font-line-500);
  transform: translateY(-50%);
}
.el_heading--tal{
  text-align: left;
}
.el_heading--mb30{
  margin-bottom: 30px;
}
.el_heading--mb50{
  margin-bottom: 50px;
}
.el_heading--mb70{
  margin-bottom: 70px;
}
.el_heading__em{
  font-size: 50px;
  font-weight: bold;
}
.el_heading__br{
  display: block;
}
.el_heading__letter{
  letter-spacing: 0.05em;
}
.el_heading__orange{
  color: var(--primary-700);
}
.el_heading__col{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 20px;
  flex-wrap: wrap;
}
.el_heading__col.el_heading__col--nac{
  align-items: baseline;
}
.el_heading__copy{
  text-align: center;
}
.el_heading__small{
  font-size: 12px;
}
/* aiセクション */
.m_ai-copy{
  font-size: var(--fz-l);
  font-weight: bold;
  text-align: center;
  line-height: var(--line-height-m);
}
.m_ai-effect__wrap{
  padding: 50px;
  background-color: #fff;
  border-radius: 10px;
}
.m_ai-effect__image{
  max-width: 600px;
  margin-inline: auto;
}
.m_ai__content{
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 30px;
  padding: 40px;
  border-radius: 10px;
  background-color: #fff;
}
.m_ai__content-wrap{
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: max-content;
  gap: 20px 0;
  padding-top: 30px;
}
.m_ai__content:not(:last-of-type){
  margin-bottom: 30px;
}
.m_ai__heading{
  font-size: 50px;
  font-weight: bold;
  line-height: var(--line-height-s);
  width: max-content;
}
.m_ai__copy{
  font-size: 30px;
  font-weight: bold;
  line-height: var(--line-height-s);
  margin-bottom: 10px;
}
.m_ai__detail{
  font-size: 16px;
  line-height: var(--fz-l);
}
@media (max-width: 768px) {
  /* CTA */
  .el_cta-btn.el_cta-btn--small a{
    height: 34px;
  }
  .ly_cta-box__inner{
    padding: 30px;
  }
  .m_cta-box{
    display: block;
  }
  .m_cta-box__text{
    margin-bottom: 20px;
  }
  .m_cta-box__text br{
    display: none;
  }
  /* セクション見出し el_heading */
  .el_heading-l{
    font-size: 18px;
  }
  .el_heading__em{
    font-size: 30px;
  }
  .el_heading__col{
    display: inherit;
    word-break: auto-phrase;
  }
  .el_heading--mb70{
    margin-bottom: 50px;
  }
  .el_heading--mb50{
    margin-bottom: 30px;
  }
  .el_heading-line__wrap{
    font-size: 30px;
  }
  /* aiセクション */
  .m_ai__wrap{
    grid-template-columns: 1fr;
  }
  .m_ai__heading{
    font-size: 30px;
  }
  .m_ai__copy{
    font-size: 20px;
  }
  .m_ai__content{
    padding: 30px;
    grid-template-columns: 1fr;
  }
  .m_ai__content-wrap{
    padding-top: 0;
  }
  .m_ai__content:not(:last-of-type){
    margin-bottom: 20px;
  }
  .m_ai__detail{
    font-size: 14px;
  }
}
/* CSS Document */
/*----------------------
body
------------------------*/
/* [md_01.html head style]*/
/*common heading-l*/
/* [md_01.html head style]*/
/*flexbox*/
/* [md_01.html head style]*/
/*--------------------
ボタン緑*
--------------------*/
/* [md_01.html head style]*/
/*--------------------
ボタン緑 ノーマル*
--------------------*/
/* [md_01.html head style]*/
/*--------------------
ボタン緑 PDF画像*
--------------------*/
/* [md_01.html head style]*/
/*--------------------
汎用インナーの幅
--------------------*/
/* [md_01.html head style]*/
/*--------------------
リード
--------------------*/
/* [md_01.html head style]*/
/*--------------------
背景色
--------------------*/
/* [md_01.html head style]*/
/*--------------------
オレンジグラデーション
--------------------*/
.common_o-gradation {
  background: linear-gradient(to bottom, rgba(219, 128, 0, 1) 25%, rgba(202, 79, 45, 1) 75%);
  -webkit-background-clip: text;
  color: transparent;
}
@media all and (-ms-high-contrast: none) {
  .common_o-gradation {
    background: none;
    -webkit-background-clip: border-box;
    color: #d35923;
  }
}
.fadeinleft {
  opacity: 0;
  transform: translateX(40px);
  transition: 1s;
}
.fadeinright {
  opacity: 0;
  transform: translateX(-40px);
  transition: 1s;
}

/*----header-----*/
/* [md_01.html head style]*/
/*----fv-----*/
/* [md_01.html head style]*/
/*no1 text　bem形式にしない*/
.no1 {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 0 auto;
  width: 180px;
}
.no1 p {
  padding: 4px 4px 6px;
  font-size: 45%;
  font-weight: bold;
  color: #d35923;
  line-height: 1.3;
  border-top: 1px solid #d35923;
  border-bottom: 1px solid #d35923;
}
.no1 img {
  max-width: 110px;
}
/*----companylogo-----*/
/* [md_01.html head style]*/
/*----trouble-----*/
/* [md_01.html head style]*/
/*----about-----*/
.about-md {
  padding: 100px 0;
}
.about-md__text-area {
  width: 370px;
}
.about-md__figure-area {
  width: calc(100% - 400px);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  align-items: center;
}
.about-md__text-area-lead {
  line-height: 1.5;
  font-size: 130%;
  margin-bottom: 30px;
}
.about-md-emblem-box {
  width: 100%;
  padding-bottom: 10px;
}
.about-md-emblem-box__list {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.about-md-emblem-box__item {
  width: 170px;
  height: 170px;
  padding-bottom: 10px;
  position: relative;
  background: url(/lpl/asset_md_01_trial/image/image_emblem.svg) no-repeat center center;
  background-size: contain;
  color: #ce5923;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-md-emblem-box__item:last-child {
  padding-bottom: 10px;
  margin: 0;
}
.about-md-emblem-box__item-inner {
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
  font-size: 120%;
}
.about-md-emblem-box__text-sup {
  position: absolute;
  top: 0.5em;
  left: 100%;
  font-size: 35%;
}
.about-md-emblem-box__text-award,
.about-md-emblem-box__text-year {
  font-size: 200%;
  position: relative;
  padding-top: 0.05em;
  display: inline-block;
}
.about-md-emblem-box__text-min-award {
  font-size: 75%;
  letter-spacing: -0.06em;
}
.about-md__text-attention {
  font-size: 80%;
  line-height: 1.4;
}
.about-md__yotube {
  width: 100%;
  height: 100%;
}

/*----solution-----*/
.solution {
  padding: 100px 0;
}
.solution-detail {
  width: 100%;
  border-radius: 20px;
  padding: 40px 5% 10px;
  border-right: 5px solid #ffd182;
  border-bottom: 5px solid #ffd182;
}
.solution-button{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.solution-button__list{
  width: 80%;
}
.solution-button__link-wrap{
  width: 20%;
  padding: 5px 5px 20px;
}
.solution-button__link{
  font-size: 130%;
  color: #fff;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  background: -moz-linear-gradient(right, #19af93, #148880);
  background: -webkit-linear-gradient(right, #19af93, #148880);
  background: linear-gradient(to right, #19af93, #148880);
  border-radius: 10px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  box-sizing: border-box;
  display: grid;
  place-items: center;
}
.solution-button__link:hover{
  background: -webkit-linear-gradient(right, #d88000, #c74f2d);
  background: linear-gradient(to right, #d88000, #c74f2d);
}
.solution-button__item {
  padding: 5px 20px 20px 0;
  position: relative;
  z-index: 1;
  height: 100px;
}
.solution__title {
  padding: 10px;
  background: #f8f8f8;
  border: 3px solid #fff;
  border-radius: 10px;
  color: #7e7e7e;
  font-size: 110%;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: all ease-in-out 0.15s;
  position: relative;
  height: 100%;
  display: grid;
  place-items: center;
}
.solution__title::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-top: 10px solid #ce5923;
  border-bottom: 0;
  z-index: -1;
  transition: all ease-in-out 0.15s;
}
.solution__text{
  margin-bottom: 20px;
}
.solution__text.solution__text--small{
  font-size: 80%;
  line-height: 1.5;
}
.slick-current .solution__title::before,
.slick-current .solution__title {
  transition: all ease-in-out 0.35s;
}
.slick-current .solution__title,
.solution__title:hover {
  border: 3px solid #ce5923;
  color: #ce5923;
  background: #fff;
  font-size: 120%;
}
.slick-current .solution__title::before,
.solution__title:hover::before {
  bottom: -11px;
}
.solution__heading-m {
  font-size: 180%;
  font-weight: bold;
  color: #ce5923;
  margin-bottom: 20px;
  line-height: 1.2;
}
.solution__figure {
  margin-bottom: 20px;
}
.solution__image {
  max-width: 100%;
}
.solution-detail__image{
  margin: auto;
}
.solution-detail__texts{
  text-align: center;
}

/*----before-after-----*/
.before-after {
  padding: 50px 0;
}
.before-after__wrap {
  border-radius: 20px;
  padding: 40px 80px;
  z-index: 1;
  position: relative;
}
.before-after__inner {
  width: 300px;
}
.before-area {
  background: #e8e8e8;
  padding: 30px 20px 20px;
  position: relative;
}
.before-area::before,
.before-area::after {
  content: "";
  height: 0;
  border-top: 5px dotted #ffe8c0;
  position: absolute;
  left: 100%;
  z-index: -1;
}
.before-area::before {
  width: 260px;
  top: 0;
  transform-origin: left top;
  transform: rotate(55deg);
}
.before-area::after {
  width: 140px;
  bottom: 0;
}
.before-area__heading-m {
  text-align: center;
  font-size: 130%;
  font-weight: bold;
  margin-bottom: 20px;
}
.before-area__item {
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 10px;
}
.before-area__item:last-child {
  margin-bottom: 0;
}
.after-area {
  align-content: space-between;
}
.after-area__heading-m {
  font-weight: bold;
  font-size: 130%;
  text-align: center;
  width: 210px;
  margin: 0 auto;
  color: #ce5923;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 150px;
  line-height: 1.5;
  position: relative;
  background: #ffe8c0;
  padding-top: 20px;
}
.after-area__heading-m::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 50px 150px 0 150px;
  border-color: #ffe8c0 transparent transparent transparent;
  position: absolute;
  left: -45px;
  top: 100%;
}
.after-area__heading-m-strong {
  font-size: 190%;
  display: inline-block;
  padding-left: 0.3em;
}
.before-after__figure {
  border: 3px solid #f39800;
  padding: 25px 50px;
  background: #fff;
  width: 100%;
}
/* /* 期待できる効果 */
.ly_effect{
  padding: 80px 0;
}
.ly_effect__inner{
  max-width: 1200px;
  margin-inline: auto;
}
.m_effect__wrap{
  display: flex;
  gap: 0 40px;
}
.m_effect__content{
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 80px 40px 40px;
  width: calc((100% - 40px) / 2 );
}
.m_effect__heading{
  font-size: 60px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
}
.m_effect__heading-em{
  color: #f08300;
}
.m_effect__detail{
  font-size: 24px;
  text-align: center;
  line-height: 1.5;
}
.m_effect__detail-em{
  font-size: 30px;
  font-weight: bold;
}
.m_effect__detail-em .m_effect__detail-large{
  font-size: 50px;
  color: #f08300;
}
.m_effect__image{
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 30px;
  margin-top: 30px;
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
}
.m_effect__note{
  font-size: 10px;
}
/*----function-----*/
.function {
  padding: 100px 0;
}
.function-wrap {
  border-radius: 20px;
  padding: 100px 80px 50px;
}
.function__item {
  align-items: flex-start;
  width: 32%;
  background: #fff;
  border: 3px solid #e5e5e5;
  margin-bottom: 20px;
  padding: 10px 20px;
  box-sizing: border-box;
  border-radius: 10px;
  position: relative;
  word-wrap: break-word;
}
.function__heading-m {
  width: 100%;
  text-align: center;
  background: #fff0e1;
  padding: 5px;
  box-sizing: border-box;
  font-size: 110%;
  font-weight: bold;
  margin-bottom: 10px;
}
.function__figure {
  width: 100px;
}
.function__image {
  width: 100px;
  height: auto;
}
.function__text {
  width: calc(100% - 115px);
}
/* モーダル */
.function-modal {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  font-family: "Helvetica Neue", sans-serif;
}
.function-modal.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.function-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}
.function-modal__content {
  position: relative;
  background: #fff;
  padding: 32px 24px;
  border-radius: 12px;
  max-width: 500px;
  width: 75%;
  margin: 0 auto;
  z-index: 1;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  transform: translateY(40px);
  transition: transform 0.3s ease;
}
.function-modal.show .function-modal__content {
  transform: translateY(0);
}
.function-modal__title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #d35923;
}
.function-modal__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.function-modal__list li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 12px;
  color: #434343;
  font-size: 16px;
  line-height: 1.6;
}
.function-modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  color: #888;
  cursor: pointer;
  transition: color 0.2s ease;
}
.function-modal__close:hover {
  color: #000;
}
/*----support-----*/
.support {
  padding: 100px 0;
  background: url(/lpl/asset_md_01_trial/image/placeholder.webp) no-repeat center top;
  background-size: cover;
  position: relative;
  z-index: 0;
  background-attachment: fixed;
}
.support.lazyloaded {
  background-image: url(/lpl/asset_md_01_trial/image/bg-support.webp);
}
.support::after {
  content: " ";
  position: absolute;
  z-index: 1;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4) none;
}
.support__wrap {
  background: rgba(255, 255, 255, 0.8);
  position: relative;
  border-radius: 10px;
  padding: 60px;
  box-sizing: border-box;
  width: 95%;
  margin: 0 auto;
  z-index: 2;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.support__wrap::before {
  background: #e6972b;
  background: -webkit-linear-gradient(right, #db8000, #ca4f2d);
  background: linear-gradient(to right, #db8000, #ca4f2d);
  width: 130px;
  height: 50px;
  top: -25px;
  left: 30px;
  content: "永年無料";
  position: absolute;
  display: block;
  padding-top: 15px;
  text-align: center;
  box-sizing: border-box;
  font-size: 140%;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.1em;
}
.orange-box {
  background: #ffecdf;
  border-radius: 10px;
  padding: 30px;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.support__figure {
  width: 40%;
}
.support__image {
  max-width: 450px;
  width: 100%;
}
.support__list {
  width: 58%;
}
.support__item {
  position: relative;
  line-height: 1.3;
  font-size: 110%;
  font-weight: bold;
  padding: 0 0 10px 30px;
}
.support__item::before {
  left: 11px;
  line-height: 1;
  content: "•";
  font-size: 25px;
  color: #f39800;
  position: absolute;
  top: -6px;
}
.support__item:last-of-type {
  padding-bottom: 0;
}
/*----flow-----*/
.flow {
  padding: 80px 0;
}
.flow__list {
  padding-left: 120px;
  position: relative;
  margin: 0 auto;
}
.flow__list::before {
  content: "";
  width: 22px;
  height: 100%;
  background: #fff0e1;
  margin-left: -8px;
  display: block;
  position: absolute;
  top: 0;
  left: 150px;
}
.flow__item {
  position: relative;
}
.flow__item:first-child > dl dd > div {
  margin-top: 20px;
}
.flow__item:not(:last-child) {
  margin-bottom: 50px;
}
.flow__icon {
  font-size: 110%;
  color: #fff;
  background: #db8000;
  background: -webkit-linear-gradient(right, #db8000, #ca4f2d);
  background: linear-gradient(to right, #db8000, #ca4f2d);
  padding: 12px 26px;
  display: block;
  position: absolute;
  top: 0;
  left: -120px;
  z-index: 100;
  font-weight: bold;
}
.flow__icon::after {
  content: "";
  border-style: solid;
  border-width: 5px 0 5px 10px;
  border-color: transparent transparent transparent #cc5429;
  position: absolute;
  top: 50%;
  left: 100%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.flow__icon--last {
  font-size: 72%;
}
.flow__icon--last::before {
  content: " ";
  position: absolute;
  background: url("/lpl/asset_md_01_trial/image/placeholder.webp") no-repeat;
  background-size: contain;
  width: 85px;
  height: 85px;
  top: 34px;
  left: 8px;
}
.flow__icon--last.lazyloaded::before {
  background: url("/lpl/asset_md_01_trial/image/img-step4-comment.webp");
  background-size: contain;
}
.flow__d-list {
  padding-left: 100px;
  position: relative;
}
.flow__d-list::before,
.flow__d-list::after {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
}
.flow__d-list::before {
  width: 12px;
  height: 12px;
  margin-top: -3px;
  background: #d35923;
  border-radius: 50%;
  left: 27px;
  top: 21px;
}
.flow__d-list::after {
  width: 34px;
  border-bottom: 1px dashed #d35923;
  position: absolute;
  left: 36px;
  top: 23px;
}
.flow__d-list-title {
  font-size: 150%;
  font-weight: 600;
  color: #d35923;
  margin-bottom: 1vh;
}
.flow__d-list-description {
  font-size: 115%;
  line-height: 1.8;
}
.flow__d-list-text {
  margin-bottom: 20px;
}
.flow__cta-button {
  max-width: 260px;
  width: 100%;
  margin: 0;
  padding: 18px 10px 18px;
  font-size: 110%;
  letter-spacing: 0.02em;
  position: relative;
  line-height: 1.2;
}

/*----footer-----*/
footer {
  padding: 2rem 0 5.5rem;
  position: relative;
  background: #7e7e7e;
  color: #fff;
}
.footer-info {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  border-bottom: 1px solid #fff;
  padding-bottom: 20px;
}
.footer-info > div {
  width: 50%;
}
.f-menu ul {
  display: flex;
}
.f-menu ul li:first-child {
  margin-right: 40px;
  position: relative;
}
.f-menu ul li:first-child::after {
  content: " ";
  position: absolute;
  background: #fff;
  width: 1px;
  height: 16px;
  right: -20px;
  top: 2px;
}
.f-menu a {
  color: #fff;
  text-decoration: underline;
}
.f-company-info {
  display: flex;
  align-items: center;
  position: relative;
}
.f-company-info::before {
  content: " ";
  position: absolute;
  background: #fff;
  width: 1px;
  height: 60px;
  left: -40px;
  top: 0;
}
.f-company-info figure {
  max-width: 50px;
  background: #fff;
  padding: 6px;
  box-sizing: border-box;
  border-radius: 2px;
  margin-right: 20px;
}
.f-company-info img{
  width: 38px;
  height: 44px;
}
.f-company-info p {
  font-size: 105%;
  line-height: 1.5;
}
.f-company-info p span {
  font-size: 120%;
  font-weight: bold;
}
p.copyright {
  text-align: center;
  padding-top: 20px;
}
/*----page top-----*/
.pagetop {
  display: none;
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  z-index: 1000;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.3));
}
.pagetop a {
  display: block;
}
.pagetop a:hover img {
  opacity: 0.85;
}

/*----bottom cta-----*/
/* [md_01.html head style]*/
/* side menu */
/* [md_01.html head style]*/

/* =================================================
 * smartphone
 * ================================================*/
/* [md_01.html head style]*/
@media (max-width: 1023px) {
  /* [md_01.html head style]*/
  /*--------------------
  ボタン緑 PDF画像*
  --------------------*/
  /* [md_01.html head style]*/
  /*----header-----*/
  /* [md_01.html head style]*/
  /*----fv-----*/
  /* [md_01.html head style]*/
  /*company*/
  /* [md_01.html head style]*/
  /*----about-----*/
  .about-md__wrap {
    padding: 0 0 30px;
  }
  .about-md__text-area {
    width: 100%;
  }
  .about-md__figure-area {
    width: 100%;
    padding: 20px;
  }
  .about-md__figure {
    max-width: 450px;
    margin: 0 auto;
  }
  .about-md__text-area-lead {
    font-size: 115%;
    margin-bottom: 10px;
  }
  .about-md-emblem-box__list {
    margin-bottom: 5px;
  }
  .about-md-emblem-box__item:last-child {
    padding-bottom: 10px;
  }
  /*----solution-----*/
  .solution {
    padding: 30px 0;
  }
  .solution__title {
    padding: 0 10px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  /*----before-after-----*/
  .before-after {
    padding: 15px;
  }
  .before-after__wrap {
    padding: 30px;
    border-radius: 10px;
    width: 100% !important;
    max-width: 600px;
  }
  .before-after__figure {
    border: none;
    padding: 0;
    width: 100%;
    margin: 0 auto;
  }
  /* 期待できる効果 */
  .ly_effect{
    padding: 30px 0;
  }
  .ly_effect__inner{
    padding: 0 20px;
  }
  .m_effect__wrap{
    display: block;
    gap: 0;
  }
  .m_effect__content{
    width: 100%;
    padding: 50px 20px 40px;
  }
  .m_effect__content:first-of-type{
    margin-bottom: 20px;
  }
  .m_effect__heading{
    font-size: 26px;
    margin-bottom: 20px;
  }
  .m_effect__heading-em{
    font-size: 30px;
  }
  .m_effect__detail{
    font-size: 18px;
  }
  .m_effect__detail-em{
    font-size: 24px;
  }
  .m_effect__detail-em .m_effect__detail-large{
    font-size: 30px;
  }
  .m_effect__image{
    max-width: 560px;
    margin-inline: auto;
    margin-bottom: 20px;
    margin-top: 20px;
  }
  /*----function-----*/
  .function {
    padding: 0;
  }
  .function-wrap {
    border-radius: 0;
    padding: 50px;
    width: 100% !important;
  }
  .function__list {
    max-width: 500px;
    margin: 0 auto;
  }
  .function__item {
    border: none;
    margin-bottom: 10px;
    padding: 10px 5px;
  }
  .function__heading-m {
    font-size: 100%;
    padding: 0;
    background: none;
    color: #d35923;
    margin-bottom: 5px;
    line-height: 1.3;
  }
  .function__figure {
    width: 80%;
    max-width: 80px;
    margin: 0 auto;
  }
  .function__image {
    width: 100%;
  }
  .function__text {
    display: none;
  }
  .function-modal__list {
    font-size: 15px;
  }
  /*support*/
  .support {
    padding: 50px 0;
  }
  .support__wrap {
    padding: 40px 25px 25px;
  }
  .support__wrap::before {
    width: 110px;
    height: 40px;
    left: 50%;
    padding-top: 10px;
    transform: translateX(-50%);
  }
  .orange-box {
    padding: 20px;
  }
  .support__figure,
  .support__list {
    width: 100%;
  }
  .support__image {
    margin: 0 auto 20px;
    max-width: 350px;
  }
  /*flow*/
  .flow {
    padding: 30px 0;
  }
  .flow__list {
    padding-top: 20px;
    margin: 0 auto;
    padding-left: 0;
  }
  .flow__list::before {
    left: 50%;
    transform: translateX(-50%);
    margin-left: 0;
  }
  .flow__item {
    position: relative;
    background: #fff;
    padding: 30px 20px 20px;
    box-shadow: 0 0 10px rgb(0 0 0 / 20%);
    border-radius: 6px;
  }
  .flow__icon,
  .flow__icon--last {
    top: -20px;
    left: 50%;
    padding: 8px 26px;
    transform: translateX(-50%);
  }
  .flow__icon--last {
    top: -50px;
  }
  .flow__icon--last::before {
    width: 65px;
    height: 65px;
    top: -18px;
    left: -52px;
  }
  .flow__icon::after {
    display: none;
  }
  .flow__d-list {
    padding-left: 0;
  }
  .flow__d-list::before,
  .flow__d-list::after {
    display: none;
  }
  .flow__d-list-title {
    text-align: center;
  }
  .flow__d-list-text {
    margin: 0 auto;
    width: 100%;
    line-height: 1.4;
  }
  .flow__cta-button {
    padding: 10px;
    font-size: 90%;
    margin: 0 auto;
  }
  .pagetop {
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
  }
  footer {
    width: 100%;
  }
  .footer-info > div {
    width: 100%;
  }
  .f-company-info::before {
    display: none;
  }
  .f-menu ul li:first-child {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  /* [md_01.html head style]*/
  /*----side-menu-----*/
  /*--------------------
  ボタン緑 ノーマル*
  --------------------*/
  /* [md_01.html head style]*/
  /*----header-----*/
  /* [md_01.html head style]*/
  /*----fv-----*/
  /* [md_01.html head style]*/
  /*----companylogo-----*/
  /* [md_01.html head style]*/
  /*----trouble-----*/
  /* [md_01.html head style]*/
  /*----about-----*/
  .about-md {
    padding: 30px 0;
  }
  .about-md__text-area {
    margin-bottom: 30px;
  }
  .about-md__figure-area {
    width: 100%;
    padding: 0;
    background: none !important;
    border-radius: 0;
  }
  .about-md-emblem-box__item {
    width: 140px;
    height: 140px;
  }
  .about-md-emblem-box__item:last-child {
    margin-left: 10px;
  }
  .about-md-emblem-box__item-inner {
    font-size: 100%;
  }
  /*----solution-----*/
  .solution {
    padding: 30px 0;
  }
  .solution-button {
    display: none;
  }
  .solution-detail {
    width: 100%;
    padding: 20px 25px 20px;
    border: none;
  }
  .solution__heading-m {
    font-size: 140%;
    text-align: center;
    margin-bottom: 10px;
  }
  .solution__figure {
    max-width: 450px;
    margin: 0 auto 10px;
  }
  .solution__text{
    text-align: left;
  }
  .js_solution-detail-slick-arrow {
    position: absolute;
    top: 45%;
    border: none;
    width: 25px;
    height: 50px;
    border-radius: 5px;
    background: #ce5923;
    z-index: 1;
  }
  .js_solution-detail-slick-arrow::before {
    content: "";
    width: 5px;
    height: 5px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    position: absolute;
    top: 22px;
  }
  .prev-arrow {
    left: -10px;
  }
  .prev-arrow::before {
    transform: rotate(-135deg);
    right: 8px;
  }
  .next-arrow {
    right: -10px;
  }
  .next-arrow::before {
    transform: rotate(45deg);
    left: 8px;
  }
  .slick-dots {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 20px;
  }
  .slick-dots li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #f39800;
    margin: 0 5px;
    cursor: pointer;
  }
  .slick-dots li.slick-active {
    background: #f39800;
  }
  .slick-dots button {
    display: none;
  }
  /*----function-----*/
  .function-wrap {
    padding: 20px;
  }
  /*flow*/
  .flow__d-list-description {
    display: none;
  }
  /*----bottom cta-----*/
  /* [md_01.html head style]*/
}
