@charset "UTF-8";


/* ===== フッター全体 ===== */
.site-footer {
    background: #ff9823;
}
.site-footer2 {
    background: #fff;
}

/* 白い本体 */
.footer-inner {
    background: #fff;
    border-radius: 100px 100px 0 0;
    padding: 60px 0px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

/* ===== 左 ===== */
.footer-left {
    max-width: 250px;
    width: 40%;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-company p {
    font-size: 14px;
    color: #555;
    margin-bottom: 2px;
}
.footer-company a{
    display: inline-block;
    color: #333;
    text-decoration: none;
    margin-bottom: 7px;
}
/* ===== 右 ===== */
.footer-right {
    max-width: 700px;
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* メニュー */
.footer-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 40px;
    margin-bottom: 30px;
}

.footer-menu a {
    font-size: 14px;
    color: #333;
    text-decoration: none;
    transition: .3s;
}

.footer-menu a:hover {
    color: #f1860a;
}

.footer-cta {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

/* ===== カード ===== */
.cta-btn {
    position: relative;
    width: 200px;
    padding: 22px 22px 16px 15px;
    border-radius: 20px;
    background: #fff;
    text-decoration: none;
    color: #333;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: .35s;
}

/* 上のアクセント → バッジ風に */
.cta-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #5ecbff, #3aa0ff);
}

/* うっすら背景グラデ（これが効く） */
.cta-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(94,203,255,0.15), transparent 60%);
    opacity: 0;
    transition: .3s;
}

/* ===== テキスト ===== */
.cta-sub {
    font-size: 10px;
    color: #888;
    margin-bottom: 6px;
}

.cta-main {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
}

/* ===== キャラ ===== */
.cta-btn img {
    position: absolute;
    right: -15px;
    bottom: -5px;
    width: 70px;
    z-index: 2;
    transition: .35s;
}

/* ===== ホバー ===== */
.cta-btn:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.cta-btn:hover::after {
    opacity: 1;
}

.cta-btn:hover img {
    transform: scale(1.08) rotate(-2deg);
}
/* ===== コピーライト ===== */
.copyright {
    background: #fff;
    text-align: center;
    font-size: 12px;
    color: #333;
    padding: 20px 0;
}

/* ===== スマホ ===== */
@media (max-width: 768px) {

    .footer-inner {
        flex-direction: column;
        padding: 40px 20px;
        gap: 30px;
    }

.footer-left {
    max-width: 240px;
    width: 100%;
}
    .footer-right {
        width: 100%;
    }

    .footer-menu {
        gap: 15px 20px;
    }

    .footer-cta {
        flex-direction: column;
    }

    .cta-btn {
        justify-content: center;
    }
    .footer-menu {
        align-items: center;
        justify-content: center;
    }
    .footer-cta {
    align-items: center;
    justify-content: center;
}
}