@charset "utf-8";

@media screen and (min-width:737px) {
	.footer-cta {
		display: none;
	}
}

@media screen and (max-width:736px) {
  /* ---- フッター固定CTA ---- */
  .footer-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #d0021b;
    color: #fff;
    text-align: center;
    overflow: hidden;

    /* 初期表示は下に隠しておいて、ふわっと出す */
    transform: translateY(100%);
    opacity: 0;
    transition:
      /*transform 0.5s ease,
      opacity 0.5s ease,
      max-height 0.35s ease,
      padding 0.35s ease;*/
	  
	  transform 0.3s ease,
      opacity 0.3s ease,
      max-height 0.15s ease,
      padding 0.15s ease;

    max-height: 90px; /* 通常時の高さ */
    padding: 10px 16px 14px;
  }
	

  .footer-cta.is-visible {
    transform: translateY(0);
    opacity: 1;
	  z-index: 100;
  }

  /* スクロール中は縮小 */
  .footer-cta.is-compact {
    max-height: 46px;
    padding: 8px 16px;
  }

  .footer-cta .btn-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    text-decoration: none;
    font-size: 19px;
  }

  .footer-cta .btn-link::after {
    content: "›";
    font-size: 18px;
    margin-left: 2px;
  }
	
	.footer-cta .btn-link span.mail:before {
    display: inline-block;
    width: 35px;
    height: 23px;
    background: url(../img/icon-mail.png) left bottom no-repeat;
    background-size: 25px 18px;
    content: "";
  }

  .footer-cta .sub-text {
    display: block;
    font-size: 12px;
    margin-top: 4px;
    opacity: 0.9;
    white-space: nowrap;

    /* 縮小時にふわっと消える */
    transition: opacity 0.2s ease, max-height 0.2s ease;
    max-height: 20px;
    overflow: hidden;
  }

  .footer-cta.is-compact .sub-text {
    opacity: 0;
    max-height: 0;
    margin-top: 0;
  }
}