@charset "UTF-8";

/* ==========================================================================
   ボタン
   ========================================================================== */
.btn-detail {
    display: inline-flex;
    align-items: center;
    padding: 12px 32px;
    font-weight: bold;
    border-radius: var(--radius-pill);
    transition: all 0.3s ease;
    font-size: var(--fs-base);
    cursor: pointer;
    border: 2px solid var(--main-color);
}

.btn-ghost {
    background: transparent;
    color: var(--main-color);
}

.btn-ghost:hover {
    background: var(--main-color);
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(var(--main-color-rgb), 0.2);
}

.btn-detail::after {
    content: "→";
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-detail:hover::after {
    transform: translateX(5px);
}

.download-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.download-buttons a {
    display: inline-block;
    height: 48px;
    transition: transform 0.3s ease;
}

.download-buttons img {
    height: 100%;
    width: auto;
    display: block;
}

.download-buttons a:hover {
    transform: translateY(-3px);
}

.cta-button-minimal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 40px;
    background: linear-gradient(135deg, #7dbbc9, var(--main-color));
    color: var(--white-color);
    border-radius: var(--radius-md);
    font-weight: 800;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2),
        inset 0 2px 2px rgba(255, 255, 255, 0.3);
}

.download-icon {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
}

/* ==========================================================================
   アニメーション
   ========================================================================== */
.animate-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-fade.is-visible {
    opacity: 1;
    transform: translateY(0);
}