@keyframes zoomEffect {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1); /* 元のサイズ */
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1); /* 10%拡大 */
    }
}


.cta-button {
    display: none;
}


body, html {
    height: 100%;
    width: 405px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}
.container {
    position:relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
img {
    width: 100%;
    background-color: transparent; 
    display: block;
}

.fv .cta-wrapper{
    top: 79%;
}

.review .cta-wrapper{
    top: 69%;
    
}

.step .cta-wrapper{
    top: 83%;
}

.cta-wrapper{
    position: absolute;
    width: 97%;
}

@keyframes purupuru2 {
    0% {
        transform: scale(1, 1);
    }
    50% {
        transform: scale(0.98, 0.95)
    }
}


.cta-button {
    display: inline-block; /* 必要に応じて調整 */
    animation: purupuru2 1s infinite;
    transform-origin: center; /* 拡大縮小の基点を中央に指定 */

    /* 中央揃えや位置調整が必要な場合は以下を追加 */
    /* position: relative; */
    /* その他のスタイル */
    width: 100%;
    margin: auto;
    overflow: hidden;
}



.footer {
    padding: 2em 0;
    text-align: center;
    color: #666;
    line-height: 1.2;
    background-color: #f4f4f4;
    font-size: 12px;
}

.footer ul {
    padding: 0 0 1.5em 0;
    list-style: none;
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 5%;
}

/* 既存のCSSをaタグに対応させる */
.cta-button {
    display: inline-block; /* 必要に応じて変更 */
    padding: 10px 0px; /* 必要に応じて変更 */
    font-size: 16px; /* 必要に応じて変更 */
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    text-decoration: none; /* aタグ用 */
}

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


footer ul li {
    padding: 0;
    border-right: 1px solid #666;
    display: inline-block;
}

.footer ul a {
    color: #666;
}

