/* LP専用スタイル - 画像中心 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #fff;
    overflow-x: hidden;
}

/* セクション */
.lp-section {
    width: 100%;
    position: relative;
}

.lp-section img {
    width: 100%;
    height: auto;
    display: block;
}

/* ヒーローセクション */
.hero-section {
    position: relative;
}

.floating-cta {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2d5a4a 0%, #1a3d32 100%);
    color: #fff;
    padding: 20px 60px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.floating-cta:hover {
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    50% {
        box-shadow: 0 10px 30px rgba(45, 90, 74, 0.6);
    }
}

/* 固定フッター */
.fixed-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    z-index: 100;
}

.fixed-footer a {
    flex: 1;
    padding: 18px;
    text-align: center;
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;
    transition: opacity 0.3s;
}

.fixed-footer a:hover {
    opacity: 0.9;
}

.footer-tel {
    background: #2d5a4a;
    color: #fff;
}

.footer-web {
    background: #c4a35a;
    color: #fff;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .floating-cta {
        padding: 15px 40px;
        font-size: 1rem;
        bottom: 15%;
    }
}

@media (min-width: 769px) {
    .fixed-footer {
        display: none;
    }
}