@charset "UTF-8";

/*==============================================================================
Root wrapper
============================================================================= */
#aristo-lp-cv {
  position: static;
  font-size: calc(100vw * 16 / 750);
  line-height: 1;
  box-sizing: border-box;
}

#aristo-lp-cv *,
#aristo-lp-cv *::before,
#aristo-lp-cv *::after {
  box-sizing: border-box;
}

@media screen and (min-width: 768px) {
  #aristo-lp-cv {
    font-size: calc(100vw * 16 / 1440);
  }
}

@media screen and (min-width: 2001px) {
  #aristo-lp-cv {
    font-size: 16px;
  }
}

/*==============================================================================
Responsive（pc-only / sp-only）
============================================================================= */
@media screen and (max-width: 767px) {
  #aristo-lp-cv .pc-only {
    display: none;
  }

  #aristo-lp-cv .sp-only {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  #aristo-lp-cv .pc-only {
    display: block;
  }

  #aristo-lp-cv .sp-only {
    display: none;
  }
}

/*==============================================================================
CV sidebar（PC：右端追従）
============================================================================= */
#aristo-lp-cv .cv-sidebar {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 80;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 109px;
  margin: 0;
  padding: 0;
  -webkit-transition: opacity 0.7s ease, visibility 0.7s ease, -webkit-transform 0.7s ease;
  transition: opacity 0.7s ease, visibility 0.7s ease, -webkit-transform 0.7s ease;
  transition: opacity 0.7s ease, visibility 0.7s ease, transform 0.7s ease;
  transition: opacity 0.7s ease, visibility 0.7s ease, transform 0.7s ease, -webkit-transform 0.7s ease;
}

#aristo-lp-cv .cv-sidebar.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(-50%) translateX(100%);
          transform: translateY(-50%) translateX(100%);
}

#aristo-lp-cv .cv-sidebar__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.09375em;
  margin: 0;
  padding: 0;
  list-style: none;
}

#aristo-lp-cv .cv-sidebar__item {
  margin: 0;
  padding: 0;
}

#aristo-lp-cv .cv-sidebar__link {
  display: block;
  line-height: 0;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

#aristo-lp-cv .cv-sidebar__link:hover,
#aristo-lp-cv .cv-sidebar__link:focus-visible {
  opacity: 1;
}

#aristo-lp-cv .cv-sidebar__link:hover .cv-sidebar__img,
#aristo-lp-cv .cv-sidebar__link:focus-visible .cv-sidebar__img {
  -webkit-filter: brightness(1.15) drop-shadow(0 0 0.375em rgba(255, 255, 255, 0.75));
          filter: brightness(1.15) drop-shadow(0 0 0.375em rgba(255, 255, 255, 0.75));
}

#aristo-lp-cv .cv-sidebar__img {
  display: block;
  width: 109px;
  height: auto;
  max-width: none;
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}

/*==============================================================================
Fixed footer（SP：下部CVボタン）
============================================================================= */
#aristo-lp-cv .fixed-footer {
  width: 100%;
  margin: 0;
  padding: 0;
  background: #fff;
  -webkit-transition: opacity 0.7s ease, visibility 0.7s ease, -webkit-transform 0.7s ease;
  transition: opacity 0.7s ease, visibility 0.7s ease, -webkit-transform 0.7s ease;
  transition: opacity 0.7s ease, visibility 0.7s ease, transform 0.7s ease;
  transition: opacity 0.7s ease, visibility 0.7s ease, transform 0.7s ease, -webkit-transform 0.7s ease;
}

#aristo-lp-cv .fixed-footer.is-fixed {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 80;
  -webkit-box-shadow: 0 -0.375em 0.625em 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 -0.375em 0.625em 0 rgba(0, 0, 0, 0.15);
}

#aristo-lp-cv .fixed-footer.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-box-shadow: none;
          box-shadow: none;
}

#aristo-lp-cv .fixed-footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 9.875em;
  margin: 0 auto;
  padding: 0.875em 1.875em;
  width: 100%;
  max-width: 43.125em;
}

#aristo-lp-cv .fixed-footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.75em;
  margin: 0;
  padding: 0;
  list-style: none;
}

#aristo-lp-cv .fixed-footer__item {
  margin: 0;
  padding: 0;
}

#aristo-lp-cv .fixed-footer__link {
  display: block;
  line-height: 0;
  width: 13.875em;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

#aristo-lp-cv .fixed-footer__img {
  display: block;
  width: 13.875em;
  height: auto;
  max-width: none;
}

/*
  SP 固定フッター表示時のみ body に padding-bottom を付与（cv.js が高さを CSS 変数で設定）
  ※ 配置先コンテンツが隠れないための最小限の干渉
*/
@media screen and (max-width: 767px) {
  body.is-aristo-lp-cv-footer-visible {
    padding-bottom: var(--aristo-lp-cv-footer-height, 158px);
  }
}
