/*
Theme Name: grovina Theme
Theme URI: 
Author: Miku
Author URI: 
Description: 自作オリジナルテーマ
Version: 1.0
*/

body {
    margin: 0;
    padding: 0;
}

.lp-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.lp-image {
    display: block;
    width: 100%;
    max-width: 860px;
    height: auto;
}

/* 1.png内の空白部分にCTAを重ねて配置 */
.lp-image-1-wrap {
    position: relative;
    width: 100%;
    max-width: 860px;
}

.lp-image-1-wrap .lp-image {
    display: block;
    width: 100%;
    height: auto;
}

.cta-inline-1 {
    position: absolute;
    top: 83%;
    left: 0;
    width: 100%;
}

/* 7.png下の余白（CTAが収まる場所） */
.cta-spacer {
    width: 100%;
    max-width: 860px;
    aspect-ratio: 862 / 176; /* CTA_赤.pngと同じ比率 */
}

/* 1.png退場後に現れる追従CTA */
.cta-follow {
    display: none;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 100%;
    max-width: 860px;
    z-index: 100;
}

.cta-follow.is-visible {
    display: block;
}

.cta-follow.is-fixed {
  /* box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);*/
}

.cta-follow img {
    display: block;
    width: 100%;
    height: auto;
}

/* CTAホバー時に少し拡大 */
.cta-inline {
    transition: transform 0.2s ease;
}

.cta-inline:hover{
    transform: scale(1.01);
}