@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_md001/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_md001/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
------------------------*/
body {
  font-family: "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", sans-serif;
  font-size: 13px;
  line-height: 160%;
  color: #434343;
  background-color: #ffffff;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  margin: 0;
  padding: 0;
}
*::selection {
  background: #f39800 none repeat scroll 0 0;
  color: #ffffff;
}
*::-moz-selection {
  background: #f39800 none repeat scroll 0 0;
  color: #ffffff;
}
.clearfix:after {
  content: " ";
  display: block;
  clear: both;
  height: 0px;
  visibility: hidden;
}

.clearfix {
  min-height: 1px;
}

* html .clearfix {
  height: 1px;
  /*¥*/ /*/
  height: auto;
  overflow: hidden;
  /**/
}
a {
  text-decoration: none;
  color: inherit;
  transition: all ease-in-out 0.15s;
}
img {
  display: block;
  width: 100%;
  height: auto;
}
h1 {
  font-size: 250%;
  font-weight: bold;
  line-height: 1.2;
}
/*common heading-l*/
.common_heading-l-box {
  position: relative;
  margin-bottom: 40px;
}
.common_heading-l {
  font-size: 280%;
  position: relative;
  text-align: center;
  margin-bottom: 90px;
  font-weight: bold;
  line-height: 1.3;
}
.common_heading-l.common_heading-l--letter-spacing {
  letter-spacing: -0.02em;
}
.common_heading-l::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 55px;
  height: 3px;
  left: 50%;
  bottom: -50px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #f39800;
}
.common_heading-l__figure {
  display: inline-block;
  vertical-align: middle;
}
.common_heading-l__image {
  max-width: 50px;
}
/*flexbox*/
.common_flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.common_align-center {
  align-items: center;
}
/*--------------------
ボタン緑*
--------------------*/
.button-green {
  display: block;
  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: 52px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  box-sizing: border-box;
}
.button-green:hover {
  background: -moz-linear-gradient(right, #d88000, #c74f2d);
  background: -webkit-linear-gradient(right, #d88000, #c74f2d);
  background: linear-gradient(to right, #d88000, #c74f2d);
}
.button-green__sub-text {
  display: block;
  font-size: 70%;
  padding: 5px 0 0;
  letter-spacing: 0;
}
/*--------------------
ボタン緑 ノーマル*
--------------------*/
.cta-button-box {
  padding: 30px 0;
  text-align: center;
}
.cta-button-box__link {
  padding: 30px 10px 32px;
  max-width: 400px;
  width: 90%;
  font-size: 160%;
  box-sizing: border-box;
  letter-spacing: 0.1em;
  position: relative;
  display: block;
  margin: 0 auto;
}
.cta-button-box__text-small {
  font-size: 110%;
  display: block;
  padding-top: 20px;
  font-weight: bold;
  letter-spacing: 0;
}
/*--------------------
ボタン緑 PDF画像*
--------------------*/
.cta-area {
  padding: 80px 0;
  background: #ffd182;
}
.cta-area__heading-l {
  margin: 0 0 50px;
  padding: 0;
  color: #d35923;
  font-size: 210%;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  background: none;
}
.cta-area__link {
  position: relative;
  padding-left: 15px;
  height: 110px;
  display: flex;
  align-items: center;
  width: 550px;
  margin: 0 auto;
  box-sizing: border-box;
}
.cta-area__link:before {
  content: "";
  width: 10px;
  height: 10px;
  transform: rotate(-45deg);
  position: absolute;
  top: calc(50% - 5px);
  right: 30px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}
.cta-area__link-text {
  font-size: 200%;
  width: 100%;
}
.cta-button-point {
  position: absolute;
  top: 0;
  left: 50%;
  font-size: 90%;
  padding: 5px 0;
  width: 300px;
  border-radius: 10px;
  transform: translate(-50%, -60%);
  box-sizing: border-box;
  background: #fff;
  color: #333;
  border: 2px solid #059287;
}
.cta-button-point::before {
  content: "";
  width: 10px;
  height: 10px;
  transform: rotate(-45deg);
  position: absolute;
  bottom: -7px;
  left: calc(50% - 5px);
  border-bottom: 2px solid #059287;
  border-left: 2px solid #059287;
  background: #fff;
}
.cta-button-point__strong-text {
  font-size: 120%;
  font-weight: bold;
  margin-right: 2px;
}
.cta-area__link:hover .cta-button-point {
  border: 2px solid #d88000;
}
.cta-area__link:hover .cta-button-point::before {
  border-bottom: 2px solid #d88000;
  border-left: 2px solid #d88000;
}
.cta-area__figure {
  position: absolute;
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
  width: 140px;
}
/*--------------------
汎用インナーの幅
--------------------*/
.common_inner-1200 {
  margin: 0 auto;
  max-width: 1200px;
  width: 92%;
}
.common_inner-1100 {
  margin: 0 auto;
  max-width: 1100px;
  width: 92%;
}
.common_inner-1000 {
  margin: 0 auto;
  max-width: 1000px;
  width: 92%;
}
.common_inner-900 {
  margin: 0 auto;
  max-width: 900px;
  width: 92%;
}
/*--------------------
リード
--------------------*/
.common_lead {
  font-size: 140%;
  position: relative;
  text-align: center;
  line-height: 1.6;
}
/*--------------------
背景色
--------------------*/
.common_bg-palegray {
  background: #f8f8f8;
}
.common_bg-orange {
  background: #fff0e1;
}
.common_bg-white {
  background: #fff;
}
/*--------------------
オレンジグラデーション
--------------------*/
.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;
}
/*--------------------
  emblem-box
  --------------------*/

.emblem-box {
  width: 100%;
  padding-bottom: 10px;
}
.emblem-box__list {
  display: flex;
  justify-content: center;
}
.emblem-box__item {
  width: 170px;
  height: 160px;
  padding-bottom: 10px;
  position: relative;
  background: url(/lpl/asset_md001/image/image_emblem.svg) no-repeat center center;
  background-size: contain;
  color: #ce5923;
  display: flex;
  align-items: center;
  justify-content: center;
}
.emblem-box__item:last-child {
  margin-left: 20px;
  padding-bottom: 0;
}
.emblem-box__item-inner {
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
  font-size: 120%;
}
.emblem-box__text-middle{
  font-size: 90%;
}
.emblem-box__text-small{
  font-size: 70%;
  color: #434343;
  line-height: 1;
  display: inline-block;
  padding-bottom: 0.4em;
}
.emblem-box__text-no1 {
  font-size: 220%;
  position: relative;
  display: inline-block;
}
.emblem-box__text-sup {
  position: absolute;
  top: 0.5em;
  left: 100%;
  font-size: 35%;
}
.emblem-box__text-company {
  font-size: 200%;
  display: inline-block;
  padding: 0 0.05em;
}
.emblem-box__text-award,
.emblem-box__text-year {
  font-size: 200%;
  position: relative;
  padding-top: 0.05em;
  display: inline-block;
}
.emblem-box__text-min-award {
  font-size: 75%;
  letter-spacing: -0.06em;
}

/*----header-----*/
.header-navi-area {
  width: 100%;
  margin: 0 auto;
  max-width: 100%;
  background: #fff;
  height: 60px;
  position: fixed;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.3);
}
.header-navi-area__link-wrap{
  display: flex;
  align-items: center;
}
.header-navi-area__link {
  width: 220px;
  display: block;
}
.header-navi-area__link-sup{
  font-size: 11px;
}
.header-navi-area__image {
  width: 100%;
}
.header-navi-area__cta-button {
  width: 220px;
  height: auto;
  padding: 10px 0;
  font-size: 100%;
  position: relative;
}
.header-navi-area__cta-button:before {
  content: "";
  width: 50px;
  height: 40px;
  background: url(/lpl/asset_md_display_01/image/img-cta-pdf.png) no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
}
.header-navi-area__menu{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 60px;
}
.header-navi-area__list{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 30px;
}
.header-navi-area__item{
  font-size: 140%;
  font-weight: bold;
}
.header-navi-area__item-link:hover{
  opacity: .7;
}
.header-sp-navi-button {
  display: none;
}
.side-menu {
  display: none;
}

/*----fv-----*/
.fv {
  position: relative;
  overflow: hidden;
  z-index: 10;
  padding: 60px 0 30px;
}
.fv::before {
  content: "";
  position: absolute;
  top: 0;
  right: -557px;
  display: block;
  width: 70%;
  height: 100%;
  -webkit-transform: skewX(-131deg);
  transform: skewX(131deg);
  z-index: 0;
  background: #e6972b;
  background: -webkit-linear-gradient(45deg, rgba(212, 94, 30, 1) 0%, rgba(243, 154, 0, 1) 59%, rgba(243, 152, 0, 1) 100%);
  background: linear-gradient(45deg, rgba(212, 94, 30, 1) 0%, rgba(250, 173, 40, 1) 59%, rgba(250, 173, 40, 1) 100%);
}
.fv__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  padding: 30px 0 50px;
}
.fv__text-area {
  width: calc(100% - 450px);
  box-sizing: border-box;
  max-width: 700px;
}
.fv__heading-xl {
  padding-left: 30px;
  background: none;
  font-size: 390%;
  font-weight: bold;
  line-height: 1.3;
  color: #333;
  margin-bottom: 20px;
}
.fv__heading-xl-small {
  display: block;
  font-size: 50%;
  margin: 0 auto 10px;
  font-weight: 400;
}
.fv__image-box {
  width: 100%;
  max-width: 600px;
  position: relative;
  margin: 0 auto 20px 0;
  padding-top: 90px;
  padding-right: 30px;
}
.fv__emblem-box {
  position: absolute;
  top: 0;
  left: 50%;
  width: auto;
  padding-bottom: 10px;
  z-index: 1;
  transform: translateX(calc(-50% - 20px));
}
.fv__emblem-box-item::after {
  content: "";
  width: 90%;
  height: 90%;
  background: #fff;
  opacity: 0.8;
  position: absolute;
  top: 0;
  left: 5%;
  border-radius: 50%;
  z-index: -1;
}
.fv__form-area {
  margin: 0;
  width: 450px;
  box-sizing: border-box;
}
.fv__form-inner {
  padding: 30px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.fv__heading-l {
  font-size: 170%;
  text-align: center;
  font-weight: bold;
  color: #f29600;
  margin-bottom: 10px;
  position: relative;
}
.fv__heading-l::before {
  content: "";
  width: 60px;
  height: 50px;
  background: url(/lpl/asset_md001/image/icon-free.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-7.5em);
}
.fv__logo-image {
  max-width: 360px;
  width: 95%;
  margin: 0 auto 30px;
}
.fv__text-attention {
  position: absolute;
  bottom: 30px;
  left: 5%;
  width: 40%;
  font-size: 80%;
  line-height: 1.4;
}
/*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;
}
/* CM動画 */
.fv-button{
  border: none;
  transition: .3s;
  width: 100%;
}
.fv-dialog{
  max-width: 60%;
  width: 100%;
  border: none;
  padding: 0;
  overflow: visible;
}
.fv-dialog-close{
  position: absolute;
  content: "";
  background: url(/asset/image/top/image_dialog-close.svg);
  background-size: contain;
  display: block;
  z-index: 1;
  top: -15px;
  right: -15px;
  width: 30px;
  height: 30px;
  border: none;
}
.fv-dialog__movie{
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
}
dialog:-internal-dialog-in-top-layer::backdrop {
  background: rgba(0, 0, 0, 0.4);
}
.fv-image_movie-label{
  position: absolute;
  top: 30px;
  right: 30px;
  width: 130px;
  height: 130px;
}
.fv-button:after{
  position: absolute;
  content: "";
  background: url(/asset/image/top/icon_youtube-play.svg);
  background-size: cover;
  display: block;
  top: calc(50% + 90px);
  left: calc(50% - 30px);
  transform: translate(-30%, -130%);
  width: 65px;
  height: 48px;
  transition: .3s;
}
.fv-button:hover:after{
  transform: translate(-30%, -130%) scale(1.1);
}
.fv-image_movie-label-img{
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, .3));
}
/* 自動応対への導線 */
.lp_jidootai-cta{
  margin-top: 30px;
  padding: 0 20px;
}
.m_jidootai-cta__wrap{
  position: relative;
  max-width: 1100px;
  margin-inline: auto;
  border: 2px solid var(--sub-500);
  background-color: var(--main-100);
  padding: 20px 20px 10px;
}
.m_jidootai-cta__text{
  font-size: var(--fz-l);
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
.m_jidootai-cta__badge{
  position: relative;
  max-width: 700px;
  margin-inline: auto;
  background-color: #fff;
  border-radius: 5px;
  display: flex;
  gap: 0 80px;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.m_jidootai-cta__badge-md::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(calc(-50% - 30px),-50%) rotate(-90deg);
  width: 34px;
  height: 25px;
  mask: url(/asset/image/new_design/icon_arrow-down-blue_100-100.svg) no-repeat center / contain;
  -webkit-mask: url(/asset/image/new_design/icon_arrow-down-blue_100-100.svg) no-repeat center / contain;
  background-color: var(--gray-font-400);
}
.m_jidootai-cta__badge-md{
  max-width: 130px;
  width: 100%;
}
.m_jidootai-cta__badge-jidootai{
  max-width: 190px;
  width: 100%;
}
.m_jidootai-cta__more{
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--sub-500);
  padding: 5px 20px;
  text-align: center;
}
.m_jidootai-cta__more-text{
  color: #fff;
  font-size: var(--fz-s);
  font-weight: bold;
}
/*----companylogo-----*/
.companylogo {
  padding: 30px 0;
  border-bottom: 1px solid #dfdfdf;
}
@keyframes loop {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -1583px 0;
  }
}
.companylogo__list {
  width: 100%;
  text-align: center;
  margin: 0 auto;
  background: url("/asset/image/partner/partner_pickup-company.webp") repeat-x 0 0;
  background-size: 2700px auto;
  height: 156px;
  overflow: hidden;
  animation: loop 50s linear infinite;
}
/*----about-md-----*/
.about-md {
  padding: 100px 0 0;
}
.about-md__wrap {
  padding: 0 0 0;
}
.about-graph-area {
  padding: 50px;
}
.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: 150%;
  margin-bottom: 30px;
}
.about-md-emblem-box__list {
  margin-bottom: 20px;
}
.about-md-emblem-box__item {
  width: 170px;
  height: 170px;
}
.about-md-emblem-box__item:last-child {
  padding-bottom: 10px;
  margin: 0;
}
.about-md__text-attention {
  font-size: 80%;
  line-height: 1.4;
}
.about-md__item{
  background-color: #fff0e1;
  text-align: center;
  font-size: 130%;
  font-weight: bold;
  padding: 10px 0;
  border-radius: 5px;
  margin-bottom: 10px;
}
.movie-caption__wrap{
  width: calc(100% - 400px);
  margin-left: auto;
  margin-bottom: 50px;
}
.movie-caption__button{
  position: relative;
  color: #f39800;
  font-size: 9px;
  border: none;
  padding-left: 15px;
}
.movie-caption__button:after{
  display: inline-block;
  content: "";
  width: 4px;
  height: 4px;
  border-top: 1px solid #f39800;
  border-right: 1px solid #f39800;
  position: absolute;
  top: 42%;
  right: -12px;
  transform: rotate(135deg) translateY(50%);
  transition: all .3s;
  transform-origin: center;
}
.movie-caption__button:hover:after{
  top: 47%;
}
.movie-caption__button.js_movie-caption__true:after{
  transform: rotate(-45deg) translateY(50%);
  right: -8px;
}
.movie-caption__button.js_movie-caption__true:hover:after{
  top: 36%;
}
.movie-caption__tab{
  visibility: hidden;
  height: 0;
  font-size: 8px;
  background-color: #f8f8f8;
}
.movie-caption__tab.js_movie-caption__tab-true{
  visibility: visible;
  height: auto;
  margin: 0 10px 10px 10px;
  padding: 10px 10px;
}
/* 動画 */
.about-right__inner{
  text-align: center;
}
.about-right{
  width: 100%;
}
.about-right__movie{
  /* height: 400px; */
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
}

/*----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;
}
.solution__autoplay{
  display: block;
  text-align: right;
  padding-bottom: 10px;
}
.solution__autoplay-button{
  width: 32px;
  height: 32px;
  border: none;
}
.js_slick-autoplay-start{
  background: url(/lpl/asset_md001/image/icon_slick-start.svg) no-repeat center center;
  background-size: cover;
}
.js_slick-autoplay-stop{
  background: url(/lpl/asset_md001/image/icon_slick-stop.svg) no-repeat center center;
  background-size: cover;
}

/*----about-graph-----*/
.about-graph {
  border-radius: 20px;
  padding: 40px 80px;
  z-index: 1;
  position: relative;
}
.about-graph__inner {
  width: 300px;
}
.about-graph-before {
  background: #e8e8e8;
  padding: 30px 20px 20px;
  position: relative;
}
.about-graph-before::before,
.about-graph-before::after {
  content: "";
  height: 0;
  border-top: 5px dotted #ffe8c0;
  position: absolute;
  left: 100%;
  z-index: -1;
}
.about-graph-before::before {
  width: 260px;
  top: 0;
  transform-origin: left top;
  transform: rotate(55deg);
}
.about-graph-before::after {
  width: 140px;
  bottom: 0;
}
.about-graph-before__heading-m {
  text-align: center;
  font-size: 130%;
  font-weight: bold;
  margin-bottom: 20px;
}
.about-graph-before__item {
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 10px;
}
.about-graph-before__item:last-child {
  margin-bottom: 0;
}
.about-graph-after {
  align-content: space-between;
}
.about-graph-after__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;
}
.about-graph-after__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%;
}
.about-graph-after__heading-m-strong {
  font-size: 190%;
  display: inline-block;
  padding-left: 0.3em;
}
.about-graph__figure {
  border: 3px solid #f39800;
  padding: 25px 50px;
  background: #fff;
}

/*----trouble-----*/
.trouble {
  padding: 100px 0 120px;
}
.trouble__heading-l {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  padding-bottom: 30px;
  font-weight: bold;
  font-size: 200%;
  color: #f39800;
  position: relative;
  z-index: 1;
}
.trouble__heading-l::after {
  content: "";
  width: 50px;
  height: 60px;
  position: absolute;
  top: calc(50% - 50px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff0e1;
  z-index: -1;
}
.trouble__heading-l-image {
  width: 260px;
  transform: translateY(-10%);
  display: inline-block;
}
.trouble-item,
.solution-item {
  width: 32%;
}
.trouble-item {
  position: relative;
}
.trouble-item::before {
  content: "";
  width: 20px;
  height: 20px;
  border-right: 6px solid #f39800;
  border-bottom: 6px solid #f39800;
  transform: rotate(45deg);
  position: absolute;
  bottom: -150px;
  left: calc(50% - 13px);
  border-radius: 0 0 6px 0;
}
.trouble-item::after {
  content: "";
  width: 6px;
  height: 140px;
  background: #f39800;
  position: absolute;
  bottom: -150px;
  left: calc(50% - 3px);
  border-radius: 3px;
}
.solution-item__inner,
.trouble-item__inner {
  background: #fff;
  padding: 30px 20px 20px;
  border-radius: 10px;
  box-sizing: border-box;
}
.solution-item__inner {
  height: 100%;
  border: 3px solid #f39800;
}
.solution-item__heading-m,
.trouble-item__heading-m {
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.5;
}
.trouble-item__heading-m {
  font-size: 115%;
}
.solution-item__heading-m {
  font-size: 130%;
  position: relative;
  color: #ce5923;
}
.solution-item__heading-m-strong {
  font-size: 130%;
  background: linear-gradient(transparent 60%, #ff6 60%);
}
.solution-item__heading-m::before {
  content: "";
  position: absolute;
  background: url("/lpl/asset_md001/image/placeholder.png") no-repeat center center;
  background-size: contain;
  width: 80px;
  height: 50px;
  left: 50%;
  transform: translateX(-50%);
  top: -60px;
  z-index: 8;
}
.solution-item__heading-m.lazyloaded::before {
  background: url(/lpl/asset_md001/image/icon_solution.svg) no-repeat center center;
  background-size: contain;
}
.solution-item__figure {
  margin-bottom: 15px;
}
.solution-item__image {
  width: 50%;
  margin: 0 auto;
}
.trouble-item__image {
  width: 60%;
  margin: 0 auto;
}
.trouble-wrap-detail__list {
  width: 90%;
  margin: 0 auto;
}
.trouble-wrap-detail__item {
  position: relative;
  padding: 0 0 10px 20px;
  line-height: 1.4;
}
.trouble-wrap-detail__item::before {
  content: "";
  position: absolute;
  background: url("/lpl/asset_md001/image/placeholder.png") no-repeat;
  background-size: 100%;
  width: 13px;
  height: 13px;
  left: 0;
  top: 4px;
  z-index: 8;
}
.trouble-wrap-detail__item.lazyloaded::before {
  background: url(/lpl/asset_md001/image/icon-check.svg) no-repeat;
  background-size: 100%;
}
/*----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);
}
/*----support-----*/
.support {
  padding: 100px 0;
  background: url(/lpl/asset_md001/image/placeholder.png) no-repeat center top;
  background-size: cover;
  position: relative;
  z-index: 0;
  background-attachment: fixed;
}
.support.lazyloaded {
  background-image: url(/lpl/asset_md001/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-label{
  content: " ";
  position: absolute;
  width: 85px;
  height: 85px;
  top: 34px;
  left: -110px;
  z-index: 100;
}
.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;
}

/*----price----*/
.price {
  padding: 80px 0;
}
.price__list {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}
.price__item:first-of-type,
.price__item:last-of-type {
  width: 44%;
  box-sizing: border-box;
}
.price__item:nth-child(2) {
  font-size: 350%;
  color: #f39800;
  font-weight: bold;
}
.price__title {
  background: #f39800;
  padding: 12px;
  font-size: 150%;
  text-align: center;
  color: #fff;
  letter-spacing: 0.08em;
  font-weight: bold;
  border-radius: 6px 6px 0 0;
  border: 3px solid #f39800;
}
.price__num {
  font-size: 350%;
  text-align: center;
  padding: 20px;
  color: #d7651e;
  font-weight: bold;
  border-radius: 0 0 6px 6px;
  border: 3px solid #f39800;
  background: #fff;
}
.price__num-sub {
  font-size: 60%;
  color: #333;
}
/*----security-----*/
.security {
  padding: 7rem 0 5rem;
}
.security-list {
  margin: 7rem auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.security-list li {
  width: 31%;
  margin: 0 auto 30px;
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  padding: 40px;
  border-radius: 10px;
  box-sizing: border-box;
}
.security-list li > h3 {
  font-size: 150%;
  text-align: center;
  font-weight: bold;
  line-height: 1.3;
  min-height: 70px;
  color: #d7651e;
}
.security-list li > img {
  max-width: 200px;
  width: 100%;
  margin: 0 auto 20px;
}
.security-list li > p {
  font-size: 110%;
  line-height: 1.6;
}

/*----about-rakus-----*/
.about-rakus {
  padding: 80px 0;
  }
.about-rakus__flex {
  display: flex;
  align-items: center;
  max-width: 600px;
  width: 100%;
  margin: 0 auto 30px;
  }
  .about-rakus-logo__figure {
    width: 12%;
  }
  .about-rakus-logo__image {
    max-width: 35px;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
  .about-rakus__lead {
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .about-rakus__lead-main {
    font-size: 170%;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .about-rakus__table {
    width: 95%;
    margin: 0 auto 70px;
  }
  .about-rakus__th {
    font-size: 135%;
    font-weight: bold;
    padding: 20px 40px;
    border-bottom: 1px solid #ccc;
    color: #343434;
    width: 30%;
    box-sizing: border-box;
  }
  .about-rakus__td {
    font-size: 125%;
    padding: 20px 40px;
    border-bottom: 1px solid #ccc;
    color: #343434;
    width: 70%;
    box-sizing: border-box;
  }
  .about-rakus__list {
    display: flex;
    justify-content: center;
  }
  .about-rakus__item:first-of-type {
    margin-right: 30px;
  }
  .about-rakus__image {
    height: 110px;
    width: auto;
  }

/*----footer-----*/
footer {
  padding: 2rem 0 7.0rem;
  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;
}
.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-image {
  max-width: 50px;
  background: #fff;
  padding: 6px;
  box-sizing: border-box;
  border-radius: 2px;
  margin-right: 20px;
}
.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-bottom: 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-----*/
.cta-bottom-fixed {
  background: #f29600;
  padding: 12px 0;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 100;
  box-shadow: 13px 0px 10px rgb(0 0 0 / 35%);
  display: none;
}
.cta-bottom-fixed__link {
  height: 70px;
}
.cta-bottom-fixed__link-text {
  font-size: 160%;
}
/* side menu */
.side-menu {
  position: fixed;
  right: 5px;
  top: 50%;
  height: 40px;
  margin-top: -200px;
  z-index: 999;
}

.side-menu__list {
  width: 110px;
}

.side-menu__item {
  list-style: none;
}

.side-menu__link {
  display: block;
  margin-bottom: 10px;
  padding: 10px 0;
  border-radius: 0.5rem;
  box-shadow: -2px 2px 2px rgba(0, 0, 0, 0.3);
  color: #fff;
  background: #333;
  font-size: 10px;
  text-decoration: none;
  text-align: center;
  line-height: 1.1;
  border: 1px solid #fff;
  opacity: 0.8;
  position: relative;
}

.side-menu__link span {
  font-size: 10px;
}

/* shadow */
.side-menu__link:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  bottom: -12px;
  left: 46%;
  border-top: 5px solid #aaa;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.side-menu__link:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  bottom: -11px;
  left: 45%;
  border-top: 5px solid #fff;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.side-menu__link:hover {
  background: #f39800;
  text-decoration: none;
  font-weight: bold;
}

/*side-menu cta*/
.side-menu-cta-link {
  color: #fff;
  width: 110px;
  height: 40px;
  font-size: 10px;
  display: block;
  background: -moz-linear-gradient(right, #19af93, #148880);
  background: -webkit-linear-gradient(right, #19af93, #148880);
  background: linear-gradient(to right, #19af93, #148880);
  padding: 10px 0;
  text-align: center;
  line-height: 20px;
  right: 0;
  position: absolute;
  margin-top: 5px;
  opacity: 1;
  font-weight: bold;
  transition: 0.5s;
  z-index: 9;
  overflow: hidden;
}

.side-menu-cta-link:hover {
  background: #fff;
  color: #f39800;
  border: 2px solid #f39800;
  width: 150px;
  font-size: 13px;
}

.side-menu__item.btm a:after,
.side-menu__item.btm a:before {
  content: "";
  border: none;
}


/* =================================================
 * smartphone
 * ================================================*/
.sp-only {
  display: none;
}
@media (max-width: 1390px) {
  .header-navi-area__menu{
    gap: 0 30px;
  }
  .header-navi-area__list{
    gap: 0 10px;
  }
  .header-navi-area__item{
    font-size: 100%;
  }
}
@media (max-width: 1120px) {
  /*----fv-----*/
  .fv__text-area {
    width: calc(100% - 350px);
  }
  .fv__form-area {
    width: 350px;
  }
}
@media (max-width: 1023px) {
  body {
    font-size: 12px;
    position: relative;
  }
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
  .common_heading-l-box {
    margin-bottom: 20px;
  }
  .common_heading-l {
    font-size: 160%;
    margin-bottom: 50px;
  }
  .common_heading-l::after {
    margin-bottom: 20px;
    bottom: -44px;
  }
  .common_lead {
    margin-bottom: 20px;
    font-size: 115%;
  }
  .common_heading-l__image {
    max-width: 36px;
  }
  /*--------------------
  ボタン緑 PDF画像*
  --------------------*/
  .cta-area {
    padding: 20px 0;
  }
  .cta-area__heading-l {
    margin: 0 0 35px;
    font-size: 105%;
  }
  .cta-area__link {
    height: 70px;
    width: 100%;
    max-width: 450px;
  }
  .cta-area__link:before {
    width: 6px;
    height: 6px;
    top: calc(50% - 3px);
    right: 15px;
  }
  .cta-area__link-text {
    font-size: 120%;
  }
  .cta-button-point {
    font-size: 75%;
    padding: 3px 0;
    width: 75%;
    line-height: 1.5;
  }
  .cta-area__figure {
    left: -10px;
    width: 80px;
  }
  /*----header-----*/
  .header-navi-area {
    height: 50px;
    padding: 0 0 0 15px;
    display: grid;
    justify-content: inherit;
    grid-template-columns: 1fr 1fr 50px;
  }
  .header-navi-area__cta-button {
    width: 170px;
    padding: 7px 10px;
    margin: 0 10px 0 auto;
    font-size: 100%;
  }
  .header-navi-area__cta-button:before{
    width: 40px;
    height: 30px;
    left: -30px;
  }
  .header-navi-area__list{
    display: none;
  }
  .header-sp-navi-button {
    background: #f29600;
    width: 50px;
    height: 50px;
    position: relative;
    cursor: pointer;
    display: block;
  }

  .header-sp-navi-button__line-01,
  .header-sp-navi-button__line-02,
  .header-sp-navi-button__line-03 {
    width: 24px;
    height: 3px;
    background: #fff;
    display: block;
    position: absolute;
    left: 13px;
    transition: all 0.3s ease 0s;
    transform: rotate(0deg);
  }
  .header-navi-area__link{
    max-width: 220px;
    height: 50px;
  }
  .header-navi-area__image{
    height: 100%;
  }

  .header-sp-navi-button__line-01 {
    top: 15px;
  }

  .header-sp-navi-button__line-02 {
    top: 24px;
  }

  .header-sp-navi-button__line-03 {
    top: 33px;
  }
  .header-navi-area__link-sup{
    display: none;
  }
  .js_navi-click-trigger.active .header-sp-navi-button__line-01 {
    transform: rotate(-45deg);
    transform-origin: center center;
    top: 23px;
  }

  .js_navi-click-trigger.active .header-sp-navi-button__line-02 {
    background: rgba(255, 255, 255, 0);
    transform: translateX(60px);
  }

  .js_navi-click-trigger.active .header-sp-navi-button__line-03 {
    transform: rotate(45deg);
    transform-origin: center center;
    top: 23px;
  }
  /* side-menu */
  .side-menu {
    display: none;
    width: 100%;
    background: #ffd182;
    right: 0;
    top: 50px;
    height: auto;
    margin-top: 0;
    padding: 10px 5%;
  }
  .side-menu__list {
    width: 100%;
    width: 100%;
  }
  .side-menu__item {
    border-bottom: 2px solid #ffd182;
  }
  .side-menu__link {
    margin-bottom: 0;
    padding: 15px 20px;
    border-radius: 0;
    box-shadow: none;
    color: #333;
    background: none;
    font-size: 120%;
    font-weight: bold;
    text-align: left;
    border: none;
    opacity: 1;
    background: #fff;
  }

  /* shadow */
  .side-menu__link:before {
    display: none;
  }

  .side-menu__link:after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    bottom: calc(50% - 3px);
    left: auto;
    right: 20px;
    border-top: none;
    border-left: none;
    border-right: 2px solid #f39800;
    border-bottom: 2px solid #f39800;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .side-menu__link:hover {
    background: #fff0e1;
    text-decoration: none;
    font-weight: bold;
  }

  /*side-menu cta*/
  .side-menu-cta-link {
    color: #fff;
    width: 80%;
    height: auto;
    background: -moz-linear-gradient(right, #19af93, #148880);
    background: -webkit-linear-gradient(right, #19af93, #148880);
    background: linear-gradient(to right, #19af93, #148880);
    padding: 15px 0;
    position: static;
    margin: 10px auto;
    font-size: 130%;
    border-radius: 25px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    transition: none;
    text-align: center;
  }

  .side-menu-cta-link:hover {
    background: -moz-linear-gradient(right, #d88000, #c74f2d);
    background: -webkit-linear-gradient(right, #d88000, #c74f2d);
    background: linear-gradient(to right, #d88000, #c74f2d);
    color: #fff;
    border: none;
    width: 80%;
    font-size: 130%;
  }

  /*----fv-----*/
  .fv {
    padding-top: 30px;
  }
  .fv::before {
    display: none;
  }
  .fv__inner {
    width: 100%;
    padding: 30px 0;
  }
  .fv__text-area {
    width: 100%;
    max-width: initial;
  }
  .fv__heading-xl {
    font-size: 280%;
    margin-bottom: 20px;
    text-align: center;
    padding: 0;
  }
  .fv__heading-xl-image {
    width: 220px;
    padding: 0.5em 0.2em 0;
    display: inline-block;
  }
  .fv__heading-xl-small {
    font-size: 60%;
    width: 100%;
    max-width: 450px;
    margin-bottom: 10px;
  }
  .fv__image-box {
    width: 100%;
    position: relative;
    margin: 0 auto 20px;
    padding-bottom: 20px;
    padding-right: 0;
    max-width: initial;
  }
  .fv__image-box::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: 0;
    background: #e6972b;
    background: -webkit-linear-gradient(45deg, rgba(212, 94, 30, 1) 0%, rgba(243, 154, 0, 1) 59%, rgba(243, 152, 0, 1) 100%);
    background: linear-gradient(45deg, rgba(212, 94, 30, 1) 0%, rgba(250, 173, 40, 1) 59%, rgba(250, 173, 40, 1) 100%);
    z-index: -1;
  }
  .fv__image {
    width: 100%;
    margin: 0 auto;
    max-width: 400px;
  }
  .fv__form-area {
    width: 100%;
  }
  .fv__form-inner {
    padding: 30px 20%;
    border-radius: 0;
    background: #fff0e1;
    box-shadow: none;
  }
  .fv__emblem-box {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    padding-bottom: 10px;
    z-index: 1;
  }
  .fv__text-attention {
    position: static;
    width: 80%;
    margin: 0 auto 30px;
  }
  /* cm */
  .fv-pc{
    position: relative;
    max-width: 500px;
    width: 100%;
    margin: auto;
    padding: 0 20px;
  }
  .fv-image_movie-label{
    top: inherit;
    right: 10px;
    bottom: -10px;
    width: 95px;
    height: 95px;
  }
  .fv-button:after{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -70%);
  }
  .fv-button:hover:after{
    transform: translate(-50%, -70%) scale(1.1);
  }
  /*----about-md-----*/
  .about-md__wrap {
    width: 100%;
    padding: 0 0 10px;
  }
  .about-graph-area {
    padding: 15px;
  }
  .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;
  }
  .movie-caption__wrap{
    width: 100%;
  }
  /*----solution-----*/
  .solution {
    padding: 30px 0;
  }
  .solution__title {
    padding: 0 10px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  /*----about-graph-----*/
  .about-graph {
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    max-width: 600px;
  }
  .about-graph__figure {
    border: none;
    padding: 0;
    width: 100%;
    margin: 0 auto;
  }
  /*----function-----*/
  .function {
    padding: 0;
  }
  .function-wrap {
    border-radius: 0;
    padding: 50px;
    width: 100%;
  }
  .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;
  }
  /*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;
  }
  /*price*/
  .price {
    padding: 30px 0;
  }
  .price__list {
    margin: 3rem auto 1.5rem;
  }
  .price__title {
    font-size: 120%;
  }
  .price__item:first-of-type,
  .price__item:last-of-type {
    padding: 0;
  }
  .price__num {
    font-size: 200%;
    padding: 10px 6px;
  }
  .price__caution-text {
    margin-bottom: 30px;
  }

  /*security*/
  .security {
    padding: 3rem 0 1rem;
  }
  .security-list {
    margin: 3rem auto 0;
  }
  .security-list li {
    width: 94%;
    padding: 20px;
  }

  /*about-rakus*/
  .about-rakus {
  padding: 40px 0 30px;
  }
  .about-rakus__th {
    font-size: 110%;
    padding: 15px 10px;
    width: 20%;
  }
  .about-rakus__td {
    font-size: 105%;
    padding: 15px 12px;
    width: 80%;
  }
  .about-rakus-logo__figure {
    margin-right: 15px;
  }
  .about-rakus__lead-main {
    font-size: 150%;
    line-height: 1.1;
    margin-bottom: 0;
  }
  .about-rakus-logo__image {
    max-width: 50px;
  }
  .about-rakus__image {
    height: 80px;
  }

  .pagetop {
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
  }
  footer {
    padding: 1rem 0 5.5rem;
    width: 100%;
  }
  .footer-info > div {
    width: 100%;
  }
  p.copyright {
    padding-bottom: 0;
  }
  .f-company-info::before {
    display: none;
  }
  .f-menu ul li:first-child {
    margin-bottom: 20px;
  }

  /* btn-green_pdf-area */
  .bottom-cta {
    padding: 10px 0;
  }
  .btn-green_pdf-area {
    padding: 60px 0;
  }
  .btn-green_pdf.wide {
    max-width: 250px;
    margin: 0 auto;
    line-height: 1;
    letter-spacing: 0.05em;
  }
  .btn-green_pdf.wide a {
    font-size: 14px;
  }
  .btn-green_pdf,
  .btn-green_pdf.wide {
    width: 90%;
  }
  .btn-green_pdf-text {
    margin-bottom: 10px;
    font-size: 14px;
  }
  .btn-green_pdf a {
    padding: 10px;
    font-size: 16px;
  }
  .btn-green_pdf.wide a::before,
  .btn-green_pdf.wide a::after {
    content: none;
  }
  .btn-green_pdf.wide a::after {
    border-width: 7px 0 7px 7px;
  }
  .solution-box .content-link {
    width: 100%;
  }
}

@media (max-width: 820px) {
  /*----trouble-----*/
  .trouble {
    padding: 30px 0 20px;
  }
  .trouble__heading-l {
    display: none;
  }
  .trouble-item,
  .solution-item {
    width: 100%;
    max-width: 450px;
    margin: 0 auto 50px;
  }
  .trouble-item__num-1 {
    order: 1;
  }
  .trouble-item__num-2 {
    order: 3;
  }
  .trouble-item__num-3 {
    order: 5;
  }
  .solution-item__num-1 {
    order: 2;
  }
  .solution-item__num-2 {
    order: 4;
  }
  .solution-item__num-3 {
    order: 6;
  }
  .trouble-item::before {
    bottom: -30px;
  }
  .trouble-item::after {
    height: 35px;
    bottom: -30px;
  }
  .solution-item {
    margin-bottom: 30px;
  }
  .solution-item__inner,
  .trouble-item__inner {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  .solution-item__inner {
    padding: 20px 10px 10px;
  }
  .trouble-item__heading-m {
    font-size: 110%;
    text-align: left;
    width: 65%;
    margin-bottom: 0;
  }
  .solution-item__heading-m {
    font-size: 110%;
    width: 100%;
  }
  .solution-item__heading-m::before {
    width: 60px;
    height: 40px;
    top: -40px;
  }
  .trouble-item__figure,
  .solution-item__figure {
    margin-bottom: 0;
    width: 30%;
  }
  .solution-item__image {
    width: 100%;
  }
  .trouble-item__image {
    width: 100%;
  }
  .trouble-wrap-detail__list {
    width: 65%;
  }
  .trouble-wrap-detail__item {
    line-height: 1.2;
  }
}

@media (max-width: 767px) {
  .side-menu {
    display: none;
  }
  /*--------------------
  ボタン緑 ノーマル*
  --------------------*/
  .cta-button-box__link {
    padding: 15px 10px;
    font-size: 130%;
  }
  .cta-button-box__text-small {
    font-size: 100%;
    padding-top: 20px;
  }
  /*----header-----*/
  .header-navi-area__image {
    width: 80%;
  }
  .header-navi-area__link {
    width: 100%;
  }
  .header-navi-area__cta-button:before{
    display: none;
  }
  /*----fv-----*/
  .fv {
    padding-top: 0;
  }
  .fv__inner {
    padding: 60px 0 15px;
  }
  .fv__heading-xl {
    font-size: 260%;
  }
  .fv__heading-xl-image {
    width: 220px;
  }
  .fv__heading-xl-small {
    width: 90%;
    font-size: 60%;
    max-width: 450px;
  }
  /* .fv__image-box {
    margin: 0 auto 10px;
    padding-bottom: 10px;
  } */
  .fv__image {
    width: 70%;
    max-width: 400px;
  }
  .fv__text-attention {
    position: static;
    width: 90%;
    margin: 0 auto 10px;
  }
  .fv__cta {
    padding: 5px 0 0;
    position: relative;
    text-align: center;
    margin-bottom: 30px;
  }
  .fv__form-inner {
    padding: 30px 20px;
  }
  .emblem-box__item {
    width: 130px;
    height: 120px;
  }
  .emblem-box__item:last-child {
    margin-left: 10px;
  }
  .emblem-box__item-inner {
    font-size: 100%;
  }
  .movie-caption__wrap{
    margin-bottom: 0;
  }
    /* 自動応対への導線 */
  .lp_jidootai-cta{
    margin-top: 0;
    margin-bottom: 30px;
  }
  .m_jidootai-cta__wrap{
    padding: 20px 20px;
  }
  .m_jidootai-cta__badge{
    gap: 0 50px;
  }
  .m_jidootai-cta__badge-md::after{
    transform: translate(-50%,-50%) rotate(-90deg);
    width: 24px;
    height: 13px;
  }
  /*----companylogo-----*/
  .companylogo {
    border-top: 1px solid #dfdfdf;
    padding: 30px 0 0;
  }

  .companylogo__list {
    background: url("/asset/image/partner/partner_pickup-company.webp") repeat-x 0 0;
    background-size: 2000px auto;
  }
  /*----about-md-----*/
  .about-md {
    padding: 30px 0;
  }
  .about-md-emblem-box__item {
    width: 140px;
    height: 140px;
  }
  /*----solution-----*/
  .solution {
    padding: 30px 0;
  }
  .solution-button {
    display: none;
  }
  .solution-detail {
    position: relative;
    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;
  }
  .solution__autoplay {
    display: block;
    position: absolute;
    bottom: 15px;
    right: calc(50% - 57px);
    transform: translateX(50%);
    padding-bottom: 0;
  }
  .solution__autoplay-button {
    width: 21px;
    height: 21px;
    border: none;
    display: block;
  }
  /*----about-graph-----*/
  .about-graph {
    padding: 10px;
    max-width: initial;
  }
  .about-graph__image {
    max-width: 350px;
    display: block;
    margin: 0 auto;
  }
  /*----function-----*/
  .function-wrap {
    padding: 20px;
  }
  /*flow*/
  .flow__d-list-description {
    display: none;
  }
  .flow__icon-label{
    display: none;
  }
  /*----bottom cta-----*/
  .cta-bottom-fixed {
    padding: 12px 0;
  }
  .cta-bottom-fixed__link {
    height: 40px;
  }
}
/* 
@media (max-height: 700px) {
  .fv {
    height: 120vh;
  }
  .fv__image{}
}
@media (max-height: 600px) {
  .fv {
    height: 150vh;
  }
}
@media (max-width: 1200px) {
  .fv .fv-main .no1 {
    width: 250px;
  }
  .fv .fv-main .no1 p {
    font-size: 110%;
  }
  .fv .fv-main .no1 img {
    max-width: 120px;
  }
}
@media (max-width: 450px) {
  .fv .fv-main .no1 {
    width: 80%;
  }
} */
