/* 流れるロゴ */
.el_companylogo{
  width: 100%;
  text-align: center;
  margin-inline: auto;
  background: url(/asset/image/new_design/image_pickup-company.webp) repeat-x 0 0;
  background-size: cover;
  height: 155px;
  overflow: hidden;
  animation: loop 50s linear infinite;
}
.ly_companylogo--pt{
  padding-top: 30px;
}
@keyframes loop {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -2997px 0;
  }
}
/* CTA */
.ly_cta-btn.ly_cta-btn--center .el_cta-btn__link{
  margin-inline: auto;
}
.el_cta-btn__link{
  position: relative;
  max-width: max-content;
  min-width: min(100%,320px);
  width: 100%;
  height: 70px;
  padding: 0 35px;
  background-color: var(--main-800);
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.05em;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--main-800);
  border-radius: 50px;
}
.el_cta-btn__link:after{
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 13px;
  height: 15px;
  mask: url(/asset/image/new_design/icon_cta-arrow-white.svg) no-repeat center / contain;
  -webkit-mask: url(/asset/image/new_design/icon_cta-arrow-white.svg) no-repeat center / contain;
  background-color: #fff;
}
.el_cta-btn__link:hover{
  background-color: #fff;
  color: var(--main-800);
}
.el_cta-btn__link:hover:after{
  background-color: var(--main-800);
  transform: translateY(-50%) translateX(5px);
}
.el_cta-btn__link.el_cta-btn__link--footer{
  height: 50px;
  font-size: var(--fz-s);
}
/* 小型 cta */
.el_cta-btn.el_cta-btn--small .el_cta-btn__link{
  min-width: min(100%,130px);
  height: 32px;
  font-size: 13px;
  padding: 0 20px;
}
.el_cta-btn.el_cta-btn--small .el_cta-btn__link:after{
  right: 6px;
  transform: scale(0.7) translateY(-70%);
}
.el_cta-btn.el_cta-btn--small .el_cta-btn__link:hover:after{
  right: 4px;
  transform: scale(0.7) translateY(-70%) translateX(3px);
  background-size: contain;
}
/* 白色バージョン */
.el_cta-btn.el_cta-btn--white .el_cta-btn__link{
  background-color: #fff;
  color: var(--main-800);
  border: 2px solid var(--main-800);
}
.el_cta-btn.el_cta-btn--white .el_cta-btn__link:after{
  background-color: var(--main-800);
}
.el_cta-btn.el_cta-btn--white .el_cta-btn__link:hover{
  background-color: var(--main-800);
  color: #fff;
}
.el_cta-btn.el_cta-btn--white .el_cta-btn__link:hover:after{
  background-color: #fff;
}
/* cta 吹き出し */
.el_cta-btn-pop{
  position: relative;
  display: inline-block;
  font-feature-settings: "palt";
  font-weight: bold;
  margin-bottom: 5px;
}
.el_cta-btn-pop:before{
  position: absolute;
  top: 50%;
  left: -8px;
  display: inline-block;
  content: "";
  width: 1px;
  height: 17px;
  background-color: var(--primary-700);
  transform: rotate(-20deg) translateY(-50%);
}
.el_cta-btn-pop:after{
  position: absolute;
  top: 50%;
  right: -8px;
  display: inline-block;
  content: "";
  width: 1px;
  height: 17px;
  background-color: var(--primary-700);
  transform: rotate(20deg) translateY(-50%);
}
.el_cta-btn-pop__text{
  font-size: var(--fz-xxs);
}
.el_cta-btn-pop__text-em{
  font-size: var(--fz-s);
  color: var(--main-800);
  padding-right: 2px;
  padding-left: 2px;
}

/* 汎用リンク ボタン */
.ly_link-btn{
  margin-inline: auto;
}
.el_link-btn__link{
  position: relative;
  min-width: min(100%, 170px);
  max-width: max-content;
  width: 100%;
  padding: 0 30px 0 20px;
  height: 44px;
  background-color: #fff;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.02em;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--gray-line-300);
  border-radius: 50px;
}
.el_link-btn__link.el_link-btn__link--center{
  margin-inline: auto;
}
.el_link-btn__link:after{
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 13px;
  height: 15px;
  background: url(/asset/image/new_design/icon_arrow-primary_100-100.svg) no-repeat no-repeat center center;
  background-size: contain;
}
.el_link-btn__link:hover{
  background-color: var(--gray-bg-100);
  color: var(--gray-font-line-500);
}
.el_link-btn__link:hover:after{
  transform: translateY(-50%) translateX(5px);
}
/* ダウンロード ボタン */

.el_download-btn__link.el_download-btn__link--center{
  margin-inline: auto;
}
.el_download-btn__link{
  position: relative;
  max-width: 200px;
  width: 100%;
  height: 48px;
  padding: 0 10px;
  background-color: #fff;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.05em;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--gray-line-300);
  border-radius: 50px;
  transition: all .3s;
}
.el_download-btn__link:before{
  position: absolute;
  top: 40%;
  right: 16px;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 13px;
  height: 11px;
  background: url(/asset/image/new_design/icon_download-top_100-95.svg) no-repeat no-repeat center center;
  transition: all .3s;
}
.el_download-btn__link:after{
  position: absolute;
  top: 60%;
  right: 15px;
  transform: translateY(-49%);
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background: url(/asset/image/new_design/icon_download-bottom_100-45.svg) no-repeat no-repeat center center;
}
.el_download-btn__link:hover{
  background-color: var(--gray-bg-100);
  color: var(--gray-font-line-500);
}
.el_download-btn__link:hover:before{
  transform: translateY(0%);
}

/* 詳しくみる ボタン */
.el_detail-btn.el_detail-btn--sp{
  display: none;
}
.el_detail-btn__link{
  position: relative;
  width: 100%;
  min-width: min(100%, 170px);
  max-width: max-content;
  display: inline-block;
  color: var(--primary-700);
  font-weight: bold;
  font-size: 16px;
  border-bottom: 2px solid var(--primary-700);
  padding-bottom: 10px;
  padding-right: 50px;
}
.el_detail-btn__link::after{
  position: absolute;
  display: inline-block;
  content: "";
  width: 17px;
  height: 20px;
  top: calc(50% - 5px);
  right: 0;
  transform: translateY(-50%);
  background: url(/asset/image/new_design/icon_arrow-primary_100-100.svg) no-repeat no-repeat center center;
}
.el_detail-btn__link:hover{
  opacity: .5;
}
.el_detail-btn__link:hover::after{
  transform: translateY(-50%) translateX(50%);
}

/* TO TOPへのボタン */
.el_totop{
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: var(--z-index-totop);
  display: none;
}
.top .el_totop{
  bottom: 30px;
}
.el_totop__link{
  position: relative;
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 100px;
  background-color: #fff;
  box-shadow: 0px 0px 15px  rgba(0, 0, 0, .2);
}
.el_totop__link:hover{
  background-color: var(--primary-700);
}
.el_totop__link::before {
  position: absolute;
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(/asset/image/new_design/icon_totop-blue_100-100.svg) no-repeat no-repeat center center;
  background-size: contain;
  transition: transform 0.3s;
}
.el_totop__link::after{
  position: absolute;
  content: "";
  display: block;
  width: 26px;
  height: 2px;
  bottom: 33%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-700);
  transition: none;
}
.el_totop__link:hover::before{
  filter: brightness(0) invert(1);
  transform: translate(-50%, -70%);
}
.el_totop__link:hover::after{
  background-color: #fff;
}
/* 動画キャプション */
.el_movie-caption__inner{
  width: 100%;
  margin-left: auto;
}
.el_movie-caption__button{
  position: relative;
  color: #f39800;
  font-size: 9px;
  border: none;
  cursor: pointer;
  margin-bottom: 5px;
}
.el_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;
}
.el_movie-caption__button:hover:after{
  top: 47%;
}
.el_movie-caption__button.js_el_movie-caption__true:after{
  transform: rotate(-45deg) translateY(50%);
  right: -8px;
}
.el_movie-caption__button.js_el_movie-caption__true:hover:after{
  top: 36%;
}
.el_movie-caption__tab{
  visibility: hidden;
  height: 0;
  font-size: 8px;
  background-color: #fff;
}
.el_movie-caption__tab.js_el_movie-caption__tab-true{
  visibility: visible;
  height: auto;
  padding: 10px 10px;
}

/* セクション見出し el_heading:2談 -single:１段 */
.el_heading-xl{
  font-size: var(--h1-s);
  color: var(--primary-700);
  font-weight: bold;
  line-height: var(--line-height-s);
}
.el_heading-xl .el_heading-em{
  font-size: var(--h1-l);
  font-weight: bold;
}
.el_heading-xl-single{
  font-size: var(--h1-l);
  color: var(--primary-700);
  font-feature-settings: "palt";
  letter-spacing: 0.03em;
  line-height: var(--line-height-s);
}
.el_heading-l{
  font-size: var(--h2-s);
  line-height: 1.7;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  font-weight: normal;
}
.el_heading-l:has(.el_logo-large){
  line-height:  var(--line-height-xl);
}
.el_heading-l .el_heading-em{
  font-size: var(--h2-l);
  font-weight: bold;
}
.el_heading-l-single{
  font-size: var(--h2-m);
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  line-height: var(--line-height-s);
}
.el_heading-m{
  font-size: var(--h3-s);
  line-height: 1.5;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  font-weight: normal;
}
.el_heading-m .el_heading-em{
  font-size: var(--h3-l);
  font-weight: bold;
}
.el_heading-m-single{
  font-size: var(--h3-l);
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  line-height: var(--line-height-s);
}
.el_heading-tac{
  text-align: center;
}

/* heading 共通部分 */
.el_heading-mb-xl{
  margin-bottom: var(--mb-xl);
}
.el_heading-mb-l{
  margin-bottom: var(--mb-l);
}
.el_heading-mb-m{
  margin-bottom: var(--mb-m);
}
.el_heading-mb-s{
  margin-bottom: var(--mb-s);
}

/* セクション見出し el_heading-l 固有css*/
.el_heading-l.el_heading-l--tal{
  text-align: left;
}
.el_heading-block{
  display: block;
}
.el_heading-primary{
  color: var(--primary-700);
}
.el_heading-letter{
  letter-spacing: 0.05em;
}
.el_heading-l__col{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 15px;
  flex-wrap: wrap;
}
.el_heading-l__col.el_heading-l__col--aib{
  align-items: baseline;
}
/* ロゴサイズ */
.el_logo-middle{
  width: 280px;
  display: inline-block;
}
.el_logo-large{
  width: 360px;
  display: inline-block;
}
/* 数字付きのインデックスデザイン el_label-index */
.el_label-index{
  color: var(--sub-500);
  text-align: center;
}
.el_label-index__text{
  position: relative;
  font-size: 16px;
}
.el_label-index__text:after{
  position: absolute;
  display: block;
  content: "";
  width: 56px;
  height: 4px;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: url(/asset/image/new_design/icon_border-bottom-orange.svg) no-repeat no-repeat center center;
}
.el_label-index__number{
  display: block;
  font-size: 50px;
  padding-top: 5px;
  line-height: 1;
}
/* ポイント！のデザイン el_point */
.el_point{
  text-align: center;
  color: var(--primary-700);
}
.el_point__main{
  font-weight: bold;
  font-size: 24px;
  text-align: center;
}
.el_point__supplement{
  position: relative;
}
.el_point__supplement:before{
  position: absolute;
  top: 50%;
  left: 10px;
  display: inline-block;
  content: "";
  width: 1px;
  height: 15px;
  background-color: var(--primary-700);
  transform: rotate(-20deg)  translateY(-50%);
}
.el_point__supplement:after{
  position: absolute;
  top: 50%;
  right: 10px;
  display: inline-block;
  content: "";
  width: 1px;
  height: 15px;
  background-color: var(--primary-700);
  transform: rotate(20deg) translateY(-50%);
}
/*チェックリスト el_checklist */
.el_checklist__item{
  position: relative;
  font-weight: bold;
  font-size: 16px;
  padding-left: 35px;
  margin-bottom: 20px;
}
.el_checklist__item.el_checklist__item--gray{
  color: var(--gray-600);
}
.el_checklist__item:last-of-type{
  margin-bottom: 0;
}
.el_checklist__item:before{
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url(/asset/image/new_design/icon_check-primary_100-100.svg) no-repeat no-repeat center center;
  background-size: cover;
}
.el_checklist__item.el_checklist__item--gray:before{
  background: url(/asset/image/new_design/icon_check-gray_100-100.svg) no-repeat no-repeat center center;
  background-size: cover;
}
/* 項目スクロールボタン */
.el_scroll-btn{
  position: relative;
}
.el_scroll-btn__link{
  position: relative;
  font-size: var(--fz-s);
  font-weight: bold;
  padding-right: 30px;
}
.el_scroll-btn__link:hover{
  color: var(--primary-700);
}
.el_scroll-btn__link:after{
  position: absolute;
  top: 50%;
  right: 0;
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  background: url(/asset/image/new_design/icon_arrow-down-blue_100-100.svg) no-repeat no-repeat center center;
  transition: transform .3s;
}
.el_scroll-btn__link:hover:after{
  transform: translateY(-30%);
}
/* 項目スクロールボタン ボックスタイプ */
.el_scroll-btn-box__link{
  position: relative;
  display: block;
  text-align: center;
  font-size: var(--fz-s);
  font-weight: bold;
  color: var(--primary-700);
  padding: 20px 20px 35px;
  border: 1px solid var(--gray-line-300);
  border-radius: 6px;
  background-color: #fff;
}
.el_scroll-btn-box__link:after{
  position: absolute;
  bottom: 0;
  left: 50%;
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  transform: translate(-50%,-100%);
  background: url(/asset/image/new_design/icon_arrow-down-blue_100-100.svg) no-repeat no-repeat center center;
  transition: transform .3s; 
}
.el_scroll-btn-box__link:hover:after{
  transform: translate(-50%,-50%);
}

/* 機能 function プランmark */
.el_function-detail-mark{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 5px;
}
.el_function-detail-mark__item{
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fz-xxs);
  background-color: #fff;
  border: 1px solid var(--gray-font-line-500);
  border-radius: 2px;
  color: var(--gray-font-line-500);
  padding: 5px;
  line-height: 1;
}
.el_function-detail-mark__item.el_function-detail-mark__item--unavailable{
  background-color: var(--gray-bg-100);
  border: 1px solid var(--gray-line-300);
  color: var(--gray-line-300);
}


@media (max-width: 768px) {
  /* 配配メールのロゴ */
  .el_logo-middle{
    max-width: 240px;
    width: 100%;
    margin-inline: auto;
    padding: 5px 0;
  }
  .el_logo-large{
    max-width: 240px;
    width: 100%;
    margin-inline: auto;
  }
  .el_logo-block-sp{
    display: block;
  }
  .el_cta-btn__link{
    max-width: 300px;
    min-width: initial;
    font-size: 15px;
    height: 60px;
  }
  .el_cta-btn__link.el_cta-btn__link--sp-center{
    margin-inline: auto;
  }
  .el_cta-btn.el_cta-btn--small .el_cta-btn__link{
    max-width: 180px;
    min-width: initial;
  }
  /* 汎用リンク ボタン */
  .el_link-btn__link{
    min-width: 180px;
    height: 40px;
    font-size: 14px;
  }
  .el_link-btn__link:after{
    right: 10px;
  }
  /* 詳しくみる ボタン */
  .el_detail-btn.el_detail-btn--sp-center .el_detail-btn__link{
    margin-inline: auto;
    display: block;
  }
  .el_detail-btn.el_detail-btn--sp-right{
    margin-inline-start: auto;
  }
  .ly_detail-btn--sp-mt{
    margin-top: 30px;
  }
  .el_detail-btn.el_detail-btn--sp{
    display: block;
  }
  .el_detail-btn__link{
    font-size: 14px;
  }
 
  /* ダウンロード ボタン */
  .el_download-btn__link{
    font-size: 16px;
  }
   /* セクション見出し el_heading-xl */
   .el_heading-xl,.el_heading-l,.el_heading-m{
    text-align: center;
    line-height: 1.5;
   }
   .el_heading-xl-single,.el_heading-l-single,.el_heading-m-single{
    text-align: center;
   }
  /* セクション見出し el_heading-l 固有css*/
  .el_heading-l__col{
    display: block;
  }
  .el_heading-l__col.el_heading-l__col--sp{
    display: flex;
  }
  .el_heading-l__col.el_heading-l__col--sp .el_logo-large{
    margin-inline: initial;
  }
  .el_heading-l .el_heading-l__small{
    font-size: 20px;
  }
  .el_heading-l.el_heading-l--tal{
    width: 100%;
    text-align: center;
  }
  /* TO TOPへのボタン */
  .el_totop {
    bottom: 110px;
    right: 20px;
  }
  .top .el_totop {
    bottom: 20px;
    right: 20px;
  }
  .el_totop__link {
    position: relative;
    display: block;
    width: 60px;
    height: 60px;
  }
  .el_totop__link::before {
    position: absolute;
    content: "";
    display: block;
    width: 16px;
    height: 16px;
  }
  .el_totop__link::after {
    width: 16px;
    height: 1px;
  }
  /* 項目スクロールボタン ボックスタイプ */
  .el_scroll-btn-box__link{
    padding: 10px 10px 25px;
  }
  .el_scroll-btn-box__link:after{
    transform: translate(-50%,-60%);
    width: 14px;
    height: 14px;
  }
  .el_scroll-btn-box__link:hover:after{
    transform: translate(-50%,-20%);
  }
  
}