@charset "UTF-8";

/*headerのlineボタン*/
.header-line {
    padding: 0 60px 40px;

    @media (max-width: 768px) {
        padding: 0;
        padding-right: 28px;
    }
}

.header-line_link {
    background: #E85C8C;
    display: flex;
    gap: 8px;
    align-items: center;
    color: #fff;
    font-weight: bold;
    font-size: clamp(14px, 2.5vw, 20px);
    border-radius: 8px;
    padding: clamp(6px, 2vw, 14px) clamp(8px, 2vw, 16px);
    letter-spacing: 0.05rem;
    transition: all 0.3s ease;
}

.header-line_link:hover {
    background: #d94c7c;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.openbtn {
    top: 25px !important;

    @media (max-width: 768px) {

        top: 20px !important;
    }
}

/*フローディングボタン*/
.floating-line {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: none;
}

@media (max-width: 767px) {
    .floating-line {
        display: block;
    }
}

.floating-line img {
    animation: float 3s ease-in-out infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-line img:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.floating-line img:active {
    transform: scale(0.95);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}